import { PipeTransform } from '@angular/core'; import { TestService } from '../../service/test/test.service'; import { Test } from '../../model/test'; export declare class TestNamePipe implements PipeTransform { testService: TestService; tests: Test[]; constructor(testService: TestService); transform(value: number): string; }