/// export interface SidebarNavigationInterface { open?: boolean; types?: { value: string; label: string; }[]; categories?: { value: string; label: string; }[]; locations?: { value: string; label: string; }[]; eventProviders?: { value: string; label: string; }[]; levels?: { value: string; label: string; }[]; onClose: () => void; filterOptions: { value: string; label: string; }[]; } declare const SidebarNavigation: ({ open, filterOptions, onClose, types, categories, locations, eventProviders, levels }: SidebarNavigationInterface) => JSX.Element; export default SidebarNavigation;