import type { FileChurn } from "../git/types.js"; export interface ChurnOptions { pathPattern?: string; since?: string; maxCommits?: number; topN?: number; timeoutMs?: number; } export declare function analyzeChurn(repoPath: string, options?: ChurnOptions): Promise;