export interface SideBarLink { icon: string; to?: string; href?: string; title: string; children?: SideBarLink[]; restricted: boolean; } export type SidebarLinks = Array;