/** * Complete world countries list for @ollaid/native-sso * Default: Sénégal (+221, SN) */ export interface Country { code: string; name: string; dialCode: string; flag: string; digits: number; } export declare const COUNTRIES: Country[]; export declare const DEFAULT_COUNTRY_CODE = "SN"; export declare const DEFAULT_DIAL_CODE = "+221"; export declare const COUNTRIES_SORTED_BY_CODE: Country[]; export declare const getCountryByCode: (code: string) => Country | undefined; export declare const getCountryByDialCode: (dialCode: string) => Country | undefined; export declare const getDefaultCountry: () => Country; export declare const searchCountries: (query: string) => Country[];