/** * Local Explore - Minimal stub for backward compatibility */ export type AIEnhancer = (prompt: string) => Promise; export declare function setGlobalAIEnhancer(enhancer: AIEnhancer | null): void; export declare function getGlobalAIEnhancer(): AIEnhancer | null; export interface CodebaseIndex { version: number; createdAt: string; rootDir: string; hash: string; files: IndexedFile[]; symbols: SymbolIndex; imports: ImportGraph; patterns: DetectedPatterns; } export interface IndexedFile { path: string; hash: string; lastModified: number; } export interface SymbolIndex { functions: Map; classes: Map; exports: Map; } export interface ImportGraph { nodes: string[]; edges: [string, string][]; } export interface DetectedPatterns { frameworks: string[]; testFrameworks: string[]; buildTools: string[]; } export declare function buildCodebaseIndex(_rootDir: string): Promise; export declare function searchIndex(_index: CodebaseIndex, _query: string): Promise; //# sourceMappingURL=localExplore.d.ts.map