import type { ComponentProps } from 'react'; import { PanelGroup, PanelResizeHandle } from 'react-resizable-panels'; declare const ResizablePanelGroup: ({ className, ...props }: ComponentProps) => import("react").JSX.Element; declare const ResizablePanel: import("react").ForwardRefExoticComponent, "id" | "onResize"> & { className?: string; collapsedSize?: number | undefined; collapsible?: boolean | undefined; defaultSize?: number | undefined; id?: string; maxSize?: number | undefined; minSize?: number | undefined; onCollapse?: import("react-resizable-panels").PanelOnCollapse; onExpand?: import("react-resizable-panels").PanelOnExpand; onResize?: import("react-resizable-panels").PanelOnResize; order?: number; style?: object; tagName?: keyof HTMLElementTagNameMap | undefined; } & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; declare const ResizableHandle: ({ withHandle, className, ...props }: ComponentProps & { withHandle?: boolean; }) => import("react").JSX.Element; export { ResizablePanelGroup, ResizablePanel, ResizableHandle }; //# sourceMappingURL=resizable.d.ts.map