import { MazUiTranslationsSchema } from '../types'; export declare function loadDefaultMessages(locale: string): Promise; export declare function getAvailableLocales(): string[]; export declare function loadLocale(targetLocale: string): Promise; export declare function getMessages(): Record>; export declare function isLocaleLoaded(localeToCheck: string): boolean; export declare function isLocaleLoading(localeToCheck: string): boolean; export declare function setLocaleMessage(targetLocale: string, messages: Partial): void; export declare function setLocale(newLocale: string): Promise; export declare function getLoadedLocales(): string[];