import { PipeTransform } from '@angular/core'; import { ITranslationService } from './ITranslationService'; import { PipeOptions } from './models'; export declare class I18NextPipe implements PipeTransform { protected translateI18Next: ITranslationService; protected ns: string | string[]; protected scope: string | string[]; constructor(translateI18Next: ITranslationService, ns: string | string[], scope: string | string[]); transform(key: string | string[], options?: PipeOptions): string; private prependScope; private prependNamespace; private joinStrings; private keyContainsNsSeparator; private prepareOptions; }