export declare const countryList: { code: string; name: string; }[]; export declare const getCountry: () => { code: string; name: string; }; export declare function getCountryNameByCode(code: string): string; export declare function getCountryNames(codes: string[]): string[]; export declare function getCountryCodes(names: string[]): string[];