import Resizable, { ResizableItem } from "./Resizable"; import ResizableHandle from "./ResizableHandle"; declare const ResizableRoot: typeof Resizable & { Item: typeof ResizableItem; Handle: typeof ResizableHandle; }; export default ResizableRoot; export type { Props as ResizableProps, ItemProps as ResizableItemProps, HandleProps as ResizableHandleProps, } from "./Resizable.types";