export declare type Language = { id: string; name: string; flag: string; defaultCountry: string; continent: string | string[]; iso: string; }; export declare type Languages = Record; export declare const getByContinent: (languages: Language[], continent: string) => Language[]; export declare type LanguageNames = { primary: string; secondary: string; }; export declare const getNames: (lang: Language) => LanguageNames;