export type Country = { code: number; short: string; long: string; }; export declare const displayCountry: (c: Country) => string; export declare const UICCountries: Country[]; export declare const UICCountryByCode: (code: number) => Country; export declare const UICCountryByShort: (short: string) => Country; //# sourceMappingURL=countries.d.ts.map