import { Change } from './change.dto'; import { Operation } from './operation.dto'; export declare class OperationBuilder { private readonly data; constructor(branch: string); static forBranch(branch: string): OperationBuilder; outputBranch(branch: string): this; addChange(file: { build: () => Change; }): this; build(): Operation; }