import { PipeTransform } from '@angular/core';
import { TranslationService } from '../services/translation.service';
export declare class TranslatePipe implements PipeTransform {
    protected translation: TranslationService;
    constructor(translation: TranslationService);
    transform(key: string, lang: string, args?: any): string | null;
}
