import { Transform } from "../types/transform.type"; export declare class Change { readonly transforms: Transform[]; readonly sourcePath: string; readonly outputPath: string; constructor(transforms: Transform[], sourcePath: string, outputPath: string); }