type CountryData = {
    country: string;
    phoneNumberLengthByCountry_phLengthMax: number | null;
    phoneNumberLengthByCountry_phLengthMin: number | null;
    phoneNumberLengthByCountry_phLength: string | number;
    phoneNumberLengthByCountry_CountryCode: number | null;
    phoneNumberLengthByCountry_phLength_InternationalPrefix: number | null;
    phoneNumberLengthByCountry_phLength_NationalPrefix: number | null;
    phoneNumberLengthByCountry_Notes: string | null;
};
type NumberValidationData = {
    country: string;
    phLengthMax: number | null;
    phLengthMin: number | null;
    phExample?: string | number;
};

declare function getCountryDataByCode(countryCode: number): NumberValidationData;

export { type CountryData, type NumberValidationData, getCountryDataByCode };
