/** * Returns paths changed in `branch` relative to `base`. Includes staged AND * uncommitted changes — this runs after build, before push, so we want the * full picture an implementer left in the working tree. */ export declare function changedPathsAgainstBase(input: { readonly repoPath: string; readonly base: string; }): Promise; /** Number of added + deleted lines for the same diff. */ export declare function diffLineCount(input: { readonly repoPath: string; readonly base: string; }): Promise<{ added: number; deleted: number; total: number; }>; //# sourceMappingURL=diff-scan.d.ts.map