From 9386e09903f458cdb0ce5efa14443194f47f4d2a Mon Sep 17 00:00:00 2001
From: Matt Perry <mattgperry@gmail.com>
Date: Thu, 18 Jul 2024 14:52:27 +0200
Subject: [PATCH] Removung unused imports

---
 packages/framer-motion-3d/package.json                      | 2 +-
 packages/framer-motion/package.json                         | 2 +-
 packages/framer-motion/src/render/html/HTMLVisualElement.ts | 3 +--
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/packages/framer-motion-3d/package.json b/packages/framer-motion-3d/package.json
index 3981d85d0b..ab034d9a39 100644
--- a/packages/framer-motion-3d/package.json
+++ b/packages/framer-motion-3d/package.json
@@ -62,5 +62,5 @@
         "@rollup/plugin-commonjs": "^22.0.1",
         "three": "^0.137.0"
     },
-    "gitHead": "0e2f268b2178879823caa5d469fc28f08f832fda"
+    "gitHead": "ba73c507fe5acad4a3462696fa23fa36bcea999e"
 }
diff --git a/packages/framer-motion/package.json b/packages/framer-motion/package.json
index 46b8721dd4..208d23149a 100644
--- a/packages/framer-motion/package.json
+++ b/packages/framer-motion/package.json
@@ -104,5 +104,5 @@
             "maxSize": "18 kB"
         }
     ],
-    "gitHead": "0e2f268b2178879823caa5d469fc28f08f832fda"
+    "gitHead": "ba73c507fe5acad4a3462696fa23fa36bcea999e"
 }
diff --git a/packages/framer-motion/src/render/html/HTMLVisualElement.ts b/packages/framer-motion/src/render/html/HTMLVisualElement.ts
index f0ec6a2a89..59c151be6e 100644
--- a/packages/framer-motion/src/render/html/HTMLVisualElement.ts
+++ b/packages/framer-motion/src/render/html/HTMLVisualElement.ts
@@ -7,13 +7,12 @@ import { scrapeMotionValuesFromProps } from "./utils/scrape-motion-values"
 import { renderHTML } from "./utils/render"
 import { getDefaultValueType } from "../dom/value-types/defaults"
 import { measureViewportBox } from "../../projection/utils/measure"
-import { MotionProps, MotionStyle } from "../../motion/types"
+import { MotionProps } from "../../motion/types"
 import { Box } from "../../projection/geometry/types"
 import { DOMVisualElement } from "../dom/DOMVisualElement"
 import { MotionConfigContext } from "../../context/MotionConfigContext"
 import { isMotionValue } from "../../value/utils/is-motion-value"
 import type { ResolvedValues } from "../types"
-import type { IProjectionNode } from "../../projection/node/types"
 import { VisualElement } from "../VisualElement"
 
 export function getComputedStyle(element: HTMLElement) {