import type { SplitPaneProps } from '../types';
/**
* A flexible split pane component that allows resizable pane layouts.
*
* Supports horizontal (side-by-side) and vertical (stacked) layouts with
* mouse, touch, and keyboard interactions. Fully accessible with ARIA attributes.
*
* @example
* ```tsx
* // Basic horizontal split
*
*
*
*
*
*
*
*
*
* // Controlled mode with state
* const [sizes, setSizes] = useState([300, 500]);
*
* Left
* Right
*
* ```
*/
export declare function SplitPane(props: SplitPaneProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=SplitPane.d.ts.map