import { PipeTransform, Provider, Type } from '@angular/core'; import { AngularModule } from './angular-module'; import { MockCache } from './mock-cache'; export declare class TestSetup { readonly testComponentOrService: Type; readonly testModule: AngularModule; readonly dontMock: any[]; readonly mocks: Map; readonly staticMocks: Map; readonly moduleReplacements: Map; readonly mockPipes: Map, Function>; readonly mockCache: MockCache; readonly providers: Provider[]; readonly declarations: Type[]; readonly imports: AngularModule[]; readonly withStructuralDirectives: Map, boolean>; alwaysRenderStructuralDirectives: boolean; constructor(testComponentOrService: Type, testModule?: AngularModule); }