import { SafeUrl } from "@angular/platform-browser"; export declare enum NavServices { CA = "Admin", REP = "Reporter\u00EDa", BI = "Anal\u00EDtica", CW = "Colectiva Web", CM = "Comunicaci\u00F3n", ROUTES = "Rutas" } export interface NavUserProfileOption { title: string; route: any; icon?: string; } export interface NavEnvironment { repUrl: string; colUrl: string; biUrl: string; itUrl: string; comUrl: string; routesUrl: string; current: NavServices; logout: string; } export interface NavServicesMap { service: NavServices; key: string; url?: SafeUrl; current?: boolean; } export declare const NAV_MAPPED_SERVICES: NavServicesMap[]; export declare const NAV_SERVICES_BY_ROLE: { cliente: NavServices[]; subcliente: NavServices[]; analista: NavServices[]; profesional: NavServices[]; productor: NavServices[]; };