import { TsMorphAngularProjectTransformOptions } from '@rxap/workspace-ts-morph'; import { ClassDeclaration, Project, SourceFile } from 'ts-morph'; export interface CoercePipeOptions extends TsMorphAngularProjectTransformOptions { name: string; shared?: boolean; valueType?: string; pure?: boolean; tsMorphTransform?: (project: Project, sourceFile: SourceFile, classDeclaration: ClassDeclaration) => void; } export declare function CoercePipe(options: CoercePipeOptions): import("@angular-devkit/schematics").Rule;