export default function ResizableBox({ children, initSize, initPosition, style, onChange, }: {
    children: any;
    initSize: any;
    initPosition: any;
    style?: {};
    onChange: any;
}): import("react/jsx-runtime").JSX.Element;
