/** * Apply Command * Apply migration transformations to source files */ interface ApplyOptions { root: string; include: string[]; exclude: string[]; config?: string; report: 'text' | 'json' | 'md'; output?: string; verbose: boolean; strict: boolean; yes: boolean; style: string; dryRun: boolean; write: boolean; patch: boolean; backup: boolean; gitCheck: boolean; format: boolean; fixDeps: boolean; htmlReport?: boolean; } export declare function applyCommand(options: ApplyOptions): Promise; export {}; //# sourceMappingURL=apply.d.ts.map