/** * @param {{ * gitRoot: string, * changeId: string, * changeDir: string, * status: any * }} input * @param {{ * analyzeEvidencePaths: (gitRoot: string, changeId: string, evidencePaths: string[]) => Promise, * computeChangeNextAdvice: (gitRoot: string, changeId: string) => Promise, * extractId: (label: string, text: string) => string, * fileState: (changeDir: string, rel: string) => Promise, * pathExists: (path: string) => Promise, * planVerifyHint: (changeId: string) => string, * splitDeclaredValues: (value: string) => string[] * }} deps */ export declare function renderChangeNextOutput(input: any, deps: any): Promise;