import { Tree } from '@nrwl/devkit'; import { TSQuerySourceTransformer } from './replace'; interface TransformOpts { transform: (source: string) => string; } export declare const applyTransform: (opts: TransformOpts) => TSQuerySourceTransformer; export declare function transformInSource(source: string, opts: any): string | undefined; export declare function transformInFile(filePath: string, opts: any): string | undefined; export declare function transformInTree(tree: Tree, opts: any): Promise; export {};