export interface CountryModel {
    ISOCode: string;
    Name: string;
    FlagCssClass: string;
    InputMasking: string;
    CountryPhoneCode: string;
    IsShowCustomFlag: boolean;
    CustomFlagUrl?: string;
}
/**
 * Class for set the country
 */
export declare class CustomCountryModel {
    ISOCode: string;
    Name?: string;
    InputMasking?: string;
    CountryPhoneCode?: string;
    CustomFlagUrl?: string;
    constructor();
}
/**
 * Class for return the final result when input is filled correctly.
 */
export declare class NumberResult {
    Number: string;
    CountryModel: CountryModel;
}
