import { TranslateResult } from "vue-i18n/types"; export interface SideBarLink { icon: string; to?: string; href?: string; title: string; children?: SideBarLink[]; restricted: boolean; } export type SidebarLinks = Array;