import { Dictionary } from '../../infra/common/localization/types'; export declare const LOCALIZED_MENU_ITEM_TITLE_SYMBOL: unique symbol; export interface MenuItem { id?: string; code: number; titleKey: string; icon?: string; /** Fontawesome Icon name. */ faIcon?: string; children?: MenuItem[]; permission?: string; path?: string; } export declare type MenuItems = MenuItem[]; export declare class Subsystem { id: string; titleKey?: string; icon?: string; /** Fontawesome Icon name. */ faIcon?: string; menuItems?: MenuItem[]; dictionaries?: Dictionary[]; } export declare const SUBSYSTEMS_ROUTES: any[];