export interface RefreshAstgrepIndexInput { scope?: string; append_evidence?: boolean; emit_event?: boolean; include_rep_corpus?: boolean; } export interface RefreshAstgrepIndexResult { generated_at: string; scope: string; astgrep_command: string | null; output_md_path: string; output_json_path: string; evidence_appended: boolean; event_path?: string; event_id?: string; stats: { language_profile_entries: number; hotspot_files: number; rep_sources: number; todo_signals: number; }; } export declare function refreshAstgrepIndex(input?: RefreshAstgrepIndexInput): RefreshAstgrepIndexResult; //# sourceMappingURL=astgrep-index.d.ts.map