import { InjectionToken } from "@angular/core"; export type CountryDdi = { countryName: string; code: string; countryCode: string; backgroundPosition: string; mask: string; maskFormat?: string; dash_mask: string; }; export type CountryData = Omit & { dashMask: string; }; export declare const FLAG_PROVIDER_URL: InjectionToken;