/** * Translation service * Provides translation functionality for components * @returns Translation functions and state */ export declare const createTranslations: () => { t: (key: string, values?: Record) => string; translate: (key: string, values?: Record) => string; locale: import('..').Locale; setLocale: (locale: import('..').Locale) => void; subscribe: (callback: (state: Readonly) => void) => () => void; }; //# sourceMappingURL=createTranslation.d.ts.map