export interface CountryModel {
    code: string;
    label: string;
    prefix: string;
    mask: string;
}
export interface SelectCountryModel {
    onChange?: (value: CountryModel) => void;
    value?: CountryModel;
}
