interface Country {
    iso2: string;
    name: string;
    flag: string;
    countryCode: string;
    masks?: string[];
}
export declare const countries: Country[];
export declare function maskNumber(value: string, masks: string[]): string;
export {};
