/** * `totem stats --pattern-recurrence` — cross-PR recurrence clustering. * * Substrate of mmnto-ai/totem#1715. Fetches bot-review findings across * the most recent N merged PRs (configurable via --history-depth, default * 50, capped at 200), folds in trap-ledger override events as co-equal * findings, clusters by normalized signature, filters out clusters * already covered by an existing compiled rule, and writes the survivors * at `.totem/recurrence-stats.json` plus a stdout summary. * * No LLM. No GitHub API writes. Stateless per invocation. */ export interface RunRecurrenceStatsOptions { threshold?: number; historyDepth?: number; yes?: boolean; } export declare function runRecurrenceStats(options?: RunRecurrenceStatsOptions): Promise; //# sourceMappingURL=recurrence-stats.d.ts.map