import { HTMLEditor } from '../../../core/HTMLEditor';
export declare class LanguageManager {
    private editor;
    initialize(editor: HTMLEditor): void;
    getLocales(): string[];
    getCurrentLocale(): string;
    setLocale(locale: string): Promise<void>;
}
