export declare const ROLE_ADMINISTRATOR = "ROLE_ADMINISTRATOR"; export declare const ROLE_ADMINISTRATOR_EXTERNAL = "ROLE_ADMINISTRATOR_EXTERNAL"; export type AccessRoleType = 'ROLE_ADMINISTRATOR' | 'ROLE_ADMINISTRATOR_EXTERNAL'; export interface MenuItem { id?: string; link?: string; routerState?: { [k: string]: any; }; name: string; shortName?: string; svg: string; href?: string; roles?: AccessRoleType[]; primary: boolean; anonym?: boolean; active?: boolean; }