type LangLoadStatus = { lang: string; status: 'noexist' | 'cached' | 'loaded'; }; /** * The set of all languages which have been loaded using the below function. * * @type {Set} */ export declare const loadedLanguages: Set; export declare const transformAliasToOrigin: (langs: string[]) => string[]; declare function initLoadLanguage(Prism: any): (langs?: string[] | string) => Promise; export default initLoadLanguage;