import type { ContextIndexSearchResult } from "./types.js"; export interface ContextIndexSearchOptions { root?: string; query: string; taskId?: string; phase?: string; role?: string; limit?: number; } export declare function searchContextIndex({ root, query, taskId, phase, role, limit, }: ContextIndexSearchOptions): Promise;