import { MoveableSelectionObjectBox } from "./MoveableSelectionObjectBox"; export type SelectionObjectBoxProps = { className?: string; left: number; top: number; width: number; height: number; transform: string; onPointerDown?: React.PointerEventHandler; children?: React.ReactNode; } & React.RefAttributes; export declare function SelectionObjectBox({ className, left, top, width, height, transform, children, ref, ...rest }: SelectionObjectBoxProps): import("react").JSX.Element; export declare namespace SelectionObjectBox { var displayName: string; export { MoveableSelectionObjectBox as Moveable }; } //# sourceMappingURL=SelectionObjectBox.d.ts.map