import { f as Computed } from "../children-s3nFjpLA.mjs"; //#region src/utilities/element-rect.d.ts type RectResult = { x: Computed; y: Computed; width: Computed; height: Computed; top: Computed; right: Computed; bottom: Computed; left: Computed; } & Disposable; /** * Observes the full bounding rect of `target` using a `ResizeObserver` (which * fires on size changes) and returns all eight DOMRect properties as reactive * computeds. */ declare function createElementRect(target: Element): RectResult; //#endregion export { createElementRect };