import { InjectionToken } from '@angular/core'; export interface Country { code: string; name: string; phoneCode: string; phoneMask: string; } export declare const UI_ASSETS_PATH: InjectionToken; export declare const UI_COUNTRIES: InjectionToken;