import { SearchEngine } from '../../core/search/SearchEngine'; import { CallToolResult } from '../protocol/types'; export interface SearchCodeParams { query: string; language?: string; repository?: string; limit?: number; type?: 'text' | 'symbol' | 'fuzzy'; includeContent?: boolean; contextLines?: number; fileTypes?: string[]; paths?: string[]; excludePaths?: string[]; } export declare function searchCode(params: SearchCodeParams, searchEngine: SearchEngine): Promise; //# sourceMappingURL=searchCode.d.ts.map