export type SideBarProps = {
    onClick: (item: any) => void;
    items: Record<string, any>[];
    activeItem: string;
    storageKey?: string;
    hideToggle?: boolean;
};
declare function Sidebar({ onClick, items, activeItem, storageKey, hideToggle }: SideBarProps): import("react/jsx-runtime").JSX.Element | null;
export default Sidebar;
