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