export type ISidebarItem = {
    name: string;
    path: string;
    meta?: {
        title?: string;
        icon?: string;
    };
    fullPath?: string;
    children?: ISidebarItem[];
};
