import type { FC } from 'react'; import * as ResizablePrimitive from 'react-resizable-panels'; export type ResizableGroupProps = React.ComponentProps & { dataTestId?: string; }; export type ResizablePanelProps = React.ComponentProps & { dataTestId?: string; }; export type ResizableSeparatorProps = React.ComponentProps & { withHandle?: boolean; dataTestId?: string; }; export declare const Resizable: { Group: FC; Panel: FC; Separator: FC; };