import { I18nService, TranslateOptions } from './services/i18n.service'; export declare class I18nContext { readonly lang: string; private readonly service; constructor(lang: string, service: I18nService); translate(key: string, options?: TranslateOptions): T; t(key: string, options?: TranslateOptions): T; }