import { Type } from '@angular/core'; import { BaseSpectatorOptions } from '../base/options'; /** * @publicApi */ export interface SpectatorPipeOptions extends BaseSpectatorOptions { pipe: Type

; host?: Type; detectChanges?: boolean; template?: string; } /** * @internal */ export declare function getSpectatorPipeDefaultOptions(overrides?: SpectatorPipeOptions): Required>;