import { PipeTransform } from '@angular/core';
import { TccTranslation } from '../../../odata/models/shared.model';
import { TccAuthService } from '../../../odata/services/tcc-auth/tcc-auth.service';
export declare class TccTranslationPipe implements PipeTransform {
    private authservice;
    constructor(authservice: TccAuthService);
    transform(value: TccTranslation | string | number, Default?: string): string;
}
