/** * @param {{ * gitRoot: string, * changeId: string, * options: { noValidate: boolean, allowFail: boolean } * }} input * @param {{ * changeDirAbs: (gitRoot: string, changeId: string) => string, * fileState: (changeDir: string, rel: string) => Promise, * pathExists: (path: string) => Promise, * runChangeEvidenceWorkflow: (input: any, deps: any) => Promise<{ output: string, errorToThrow: any }>, * workflowDeps: Record, * UserError: typeof import("../errors.js").UserError * }} deps */ export declare function runChangeEvidenceCommand(input: any, deps: any): Promise;