import { ICountry, ICountryUniqueKeys } from '../interfaces'; interface findCountryDataByValueProps { countryList: ICountry[]; key?: ICountryUniqueKeys; value: string; } export declare const findCountryByKeyValue: ({ countryList, key, value }: findCountryDataByValueProps) => ICountry | null; export {};