interface Country { abbr: string; code: string; icon: string; name: string; suggested?: boolean; } export declare const groupedCountries: readonly [ { readonly label: 'Suggested'; readonly options: Country[]; }, { readonly label: 'All Countries'; readonly options: Country[]; } ]; export {};