import { TranslationsMap } from '../interfaces/TranslationsMap'; export declare abstract class BaseTranslationPipe { protected language: (keyof TranslationsMap); protected translations: TranslationsMap; constructor(language: (keyof TranslationsMap)); transform(value: string): any; }