import * as ResizablePrimitive from "react-resizable-panels"; declare const ResizablePanelGroup: ({ className, ...props }: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; declare const ResizablePanel: import("react").ForwardRefExoticComponent, "id" | "onResize"> & { className?: string | undefined; collapsedSize?: number | undefined; collapsible?: boolean | undefined; defaultSize?: number | undefined; id?: string | undefined; maxSize?: number | undefined; minSize?: number | undefined; onCollapse?: ResizablePrimitive.PanelOnCollapse | undefined; onExpand?: ResizablePrimitive.PanelOnExpand | undefined; onResize?: ResizablePrimitive.PanelOnResize | undefined; order?: number | undefined; style?: object | undefined; tagName?: keyof HTMLElementTagNameMap | undefined; } & { children?: import("react").ReactNode; } & import("react").RefAttributes>; declare const ResizableHandle: ({ withHandle, className, ...props }: React.ComponentProps & { withHandle?: boolean; }) => import("react/jsx-runtime").JSX.Element; export { ResizablePanelGroup, ResizablePanel, ResizableHandle };