import { ICountry, ICountryUniqueKeys } from '../interfaces'; export declare const getAllCountries: () => ICountry[]; export declare const getCountryByCode: (value: string) => ICountry | null; export declare const getCountryByKeyValue: (key: ICountryUniqueKeys, value: string) => ICountry | null;