/** * Resizable sidebar component with collapse/expand functionality */ import React, { ReactNode } from 'react'; import { Theme } from '../types'; export interface ResizableSidebarProps { /** Sidebar content */ children: ReactNode; /** Theme configuration */ theme: Theme; /** Minimum width in pixels */ minWidth?: number; /** Maximum width in pixels */ maxWidth?: number; /** Default width in pixels */ defaultWidth?: number; /** Storage key for persisting width */ storageKey?: string; /** Collapsed label (shown vertically when collapsed) */ collapsedLabel?: string; } /** * Resizable sidebar with drag handle and collapse functionality */ export declare const ResizableSidebar: React.FC; //# sourceMappingURL=ResizableSidebar.d.ts.map