import { Country } from './types'; import { countryInformation as all } from './data'; import { CountryCode } from 'libphonenumber-js'; export default all; export declare const getEmojiFromCountryCode: (country: CountryCode) => string; export declare const getCountryByIso: (country: string | undefined) => Country | undefined; export declare const getCountryCodeFromPhoneNumber: (number: string | undefined) => CountryCode | undefined; export declare const getCountryByDialCode: (val?: string | undefined) => Country | undefined; export declare const filterCountries: (term: string) => (f: Country) => boolean;