export interface Country { iso2: string; name: string; dialCode: string; } export declare const countries: Country[];