import { Transform } from "../types/transform.type"; import { Transformation } from "../types/transformation.type"; import { Change } from "./change.dto"; export declare class ChangeBuilder { private _transforms; private _outputPath; private readonly _sourcePath; private constructor(); static forSourceFile(path: string): ChangeBuilder; withOutputPath(path: string): Omit; transformations(transformations: Transformation[]): Omit; transform(fn: Transform): Omit; build(): Change; }