import { InjectionToken } from "@angular/core"; export declare class NavItem { displayName: string; disabled?: boolean | undefined; iconName?: string | undefined; rootUrl?: string | undefined; route?: string | undefined; isNotSameRoot?: boolean | undefined; queryParams?: any; children?: NavItem[] | undefined; constructor(displayName: string, disabled?: boolean | undefined, iconName?: string | undefined, rootUrl?: string | undefined, route?: string | undefined, isNotSameRoot?: boolean | undefined, queryParams?: any, children?: NavItem[] | undefined); } export declare const SMART_ADMIN_URL: InjectionToken; export declare const SMART_DOMAIN_FORMAT: InjectionToken;