/** * Process Command v3 * * Process a commit using delta-based attribution. * Replays deltas to compute AI vs human attributions and writes git notes. */ import type { ProcessResult } from "./lib/types"; /** * Process a commit using delta-based attribution */ export declare function processCommit(repoRoot: string, commitSha: string): Promise; /** * CLI handler for process command */ export declare function runProcess(sha?: string): Promise;