import React from 'react'; export interface SidebarProps { menu: { icon?: any; label?: string; }[]; onClick?: (item?: any) => void; expanded?: boolean; } export declare const Sidebar: React.FC;