export interface Country { code: string; label?: string; countryCode?: string; iconFlagName?: string; } export declare const countries: Country[];