import type { Language, LanguageId } from '../data/languages/languages.zod'; import type { TranslationsApp } from '../data/translationsApp/translationsApp.zod'; import type { LanguageInfo, MeetTranslations } from '../types/languages'; export declare function getLanguageInfo(languageId: LanguageId, options?: { includeInProgressDmcSets?: boolean; }): LanguageInfo; export declare function getInitialAppInterfaceLanguage(userPhoneLanguages: Array): Language['languageId']; export declare function isLanguageAvailable(status: Language['status'], isDev?: boolean): boolean; export declare function numerals(text: string, scriptName: string): string; /** * These values are not the name of the font necessarily, but the identifier of * the font which can be found by inspecting the font in an app like Font Book. */ export declare function getAppTranslations(appLanguageId: LanguageId): TranslationsApp[string]; export declare function getMeetTranslations(meetLanguageInfo: LanguageInfo): MeetTranslations;