import { Tree } from '@nrwl/devkit'; export interface ClassPropertyReplaceOptions { code: string; classId: string; propertyId: string; } export interface ApiClassPropertyReplaceOptions { code: string; classId?: string; propertyId?: string; } export interface ClassPropertyReplaceTreeOptions extends ClassPropertyReplaceOptions { projectRoot: string; relTargetFilePath: string; } export declare function replaceClassPropertyInSource(source: string, opts: ClassPropertyReplaceOptions): string | undefined; export declare function replaceClassPropertyInFile(filePath: string, opts: ClassPropertyReplaceOptions): string | undefined; export declare function replaceClassPropertyInTree(tree: Tree, opts: ClassPropertyReplaceTreeOptions): Promise;