export interface WatchBadcasesOptions { dir: string; stateFile?: string; intervalMs?: number; once?: boolean; json?: boolean; cwd?: string; } export interface WatchBadcasesSummary { watchDir: string; stateFile: string; scanned: number; processed: number; skipped: number; llmAvailable: boolean; warnings: string[]; details: Array<{ file: string; status: 'processed' | 'skipped' | 'error'; message: string; }>; } export declare function runWatchBadcases(options: WatchBadcasesOptions): Promise; //# sourceMappingURL=badcase-watcher.d.ts.map