import type { PaneProps } from '../types'; /** * A pane component that must be used as a direct child of SplitPane. * * Panes can have size constraints and can be either controlled (with `size`) * or uncontrolled (with `defaultSize`). * * @example * ```tsx * // Uncontrolled with constraints * * Content here * * * // Controlled * * Content here * * * // Percentage-based sizing * * Sidebar * * ``` */ export declare const Pane: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=Pane.d.ts.map