export interface CountryDataTypes { id: number; name: string; isoAlpha2: string; isoAlpha3: string; isoNumeric: number; currency: { code: string; name: string; symbol: string | boolean; }; flag: string; callingCodes: string; languages: string[]; emoji: string; } interface Props { name?: string; countryCode?: string; callingCode?: string; currencyName?: string; currencyCode?: string; currencySymbol?: string; isoNumeric?: number; } export declare function lookup(data: Props): CountryDataTypes; export {};