import { PipeTransform } from '@angular/core'; import { DictionaryService } from '../services/dictionary/dictionary.service'; export declare class TextMapperPipe implements PipeTransform { private dictionaryService; constructor(dictionaryService: DictionaryService); transform(value: any, key?: any): any; }