import type { RecursiveObject } from "@edenapp/types"; import type { I18nManager } from "./I18nManager"; export declare class I18nHandler { private i18nManager; constructor(i18nManager: I18nManager); handleGetLocale(): Promise<{ locale: string; }>; handleGetCommon(args: { locale: string; }): { translations: RecursiveObject; }; } //# sourceMappingURL=I18nHandler.d.ts.map