import * as React from "react"; export declare type MovableProps = { useParentBounds?: boolean; hideBorder?: boolean; children?: React.ReactNode; hideHandlers?: boolean; borderColor?: string; gridBackground?: boolean; onMouseUp?: Function; initialWidth?: number; initialHeight?: number; initialX?: number; initialY?: number; width?: number; className?: string; style: object; onDrag: Function; }; declare const Movable: ({ useParentBounds, children, hideBorder, borderColor, initialWidth, initialHeight, initialX, initialY, onMouseUp, onDrag, gridBackground, className, style }: MovableProps) => JSX.Element; export default Movable;