import { type SplitViewProps } from './SplitView.types'; /** * A resizable split layout component with two panels. * * Users can adjust panel sizes by dragging the divider between panels. * The controlled panel (determined by `targetPanel`) can be shown or hidden using the `isOpen` prop. * * @example * ```tsx * const [isOpen, setIsOpen] = useState(true); * * Left Panel} * rightPanelSlot={
Right Panel
} * isOpen={isOpen} * targetPanel="right" * initialPanelSize={300} * minPanelSize={200} * maxPanelSize={500} * style={{ minWidth: '600px' }} * /> * ``` */ export declare const SplitView: import("react").ForwardRefExoticComponent>;