import type { SplitLayoutType } from '../../../../components/SplitPane'; export declare const RESIZER_HEIGHT = 24; type WithSplitPaneState = { allowResize: boolean; tooltipHeight: number; setTooltipHeight: (value: number) => void; split: SplitLayoutType; setSplit: (value: SplitLayoutType) => void; size: number | string; setSize: (value: number | string) => void; maxSize?: number; minSize?: number; }; type UseWithSplitPaneProps = { containerHeight: number; }; export declare function getVerticalSize(): number; export declare function useWithSplitPaneState(props: UseWithSplitPaneProps): WithSplitPaneState; export {};