import { type StyledProps } from "./Styled"; /** * moaui Styled FloatingBox * * @param props - key, show, x, y, width, height, fill, guideBoxProps, children, onMouseDown, onMouseUp, onMouseOver, onMouseLeave, onClick, cursor, opacity, transition, border * @example * * @returns React.ReactElement */ declare const FloatingBox: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; show: boolean; x: number; y: number; width: string; height: string; }; export default FloatingBox; export { type StyledProps as FloatingBoxProps, SampleProps as FloatingBoxSample, }; //# sourceMappingURL=index.d.ts.map