export declare const menuItems: { id: number; label: string; }[]; export declare const submenusItems: ({ id: number; label: string; childItems?: undefined; } | { id: number; label: string; childItems: ({ id: number; label: string; childItems?: undefined; } | { id: number; label: string; childItems: { id: number; label: string; }[]; })[]; })[]; export declare const submenusItemsWithIcons: ({ id: number; label: string; icon: string; childItems?: undefined; } | { id: number; label: string; icon: string; childItems: { id: number; label: string; icon: string; }[]; })[];