import type { DividerProps } from '../types'; /** * The divider component that separates panes and handles resize interactions. * * This component is automatically rendered between panes by SplitPane. * You can provide a custom divider via the `divider` prop on SplitPane. * * Features: * - Keyboard accessible (arrow keys, Home, End) * - Touch-friendly for mobile devices * - ARIA attributes for screen readers * * @example * ```tsx * // Custom divider component * function CustomDivider(props: DividerProps) { * return ( *
* *
* ); * } * * * Left * Right * * ``` */ export declare function Divider(props: DividerProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Divider.d.ts.map