export interface Province { code: string; countryCode: string; name: string; } export declare const provinces: Province[];