import { FC, ReactNode } from 'react'; interface SidebarHeaderProps { header?: ReactNode; collapsed: boolean; expandedCount: number; onCollapseAll: () => void; /** Collapses/expands the whole sidebar. Omitted when the host pins it open. */ onToggleCollapse?: () => void; /** Translated control labels. Now the button's tooltip rather than visible text. */ collapseLabel: string; expandLabel: string; } export declare const SidebarHeader: FC; export {}; //# sourceMappingURL=SidebarHeader.d.ts.map