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

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