import type { GroupProps, SeparatorProps } from 'react-resizable-panels'; import { Panel } from 'react-resizable-panels'; declare const ResizablePanelGroup: ({ className, ...props }: GroupProps) => import("react/jsx-runtime").JSX.Element; declare const ResizablePanel: typeof Panel; declare const ResizableHandle: ({ withHandle, className, ...props }: SeparatorProps & { withHandle?: boolean; }) => import("react/jsx-runtime").JSX.Element; export { ResizableHandle, ResizablePanel, ResizablePanelGroup };