import "./index.css"; import type React from "react"; export type SplitContainerProps = { className?: string; panelClassName?: string; children: React.ReactNode[]; direction?: "horizontal" | "vertical"; fixedPanel?: 1 | 2; defaultFixedSize?: number; min?: number; max?: number; /** * When the fixed size is persisted, changing the layoutVersion will force clients * to reset to the default value. */ layoutVersion?: string | number; /** * If you set an id, the fixed size will be persisted, and restored after page load */ id?: string; }; export declare function SplitContainer({ className, children, direction, fixedPanel, panelClassName, defaultFixedSize, layoutVersion, min, max, id, }: SplitContainerProps): React.JSX.Element;