import { App } from "../../app/app"; export declare class TranslationManager { private app; private currentLangIndex; constructor(app: App); initialize(): void; private updateLanguage; translate(key: string): string; getCurrentLanguage(): string; getAvailableLanguages(): string[]; } export declare function translate(app: App): (key: string) => string;