import { ScrollbarProps } from '../Scrollbar'; export interface LayoutLeftPanelProps { /** The content rendered inside the left panel. */ children?: React.ReactNode; /** Additional class name applied to the panel element. */ className?: string; /** Initial width (in px) of the panel. Clamped to a minimum of 240px. */ defaultWidth?: number; /** Callback fired when the panel width changes during resize. */ onWidthChange?: (width: number) => void; /** Controls whether the panel and its divider are visible. */ open?: boolean; /** Props passed to the internal `Scrollbar` component. */ scrollbarProps?: Omit; } export declare function LayoutLeftPanel({ children, className, defaultWidth, onWidthChange, open, scrollbarProps, }: LayoutLeftPanelProps): import("react/jsx-runtime").JSX.Element | null; export declare namespace LayoutLeftPanel { var displayName: string; }