import { SearchEngine } from '../../core/search/SearchEngine'; import { CallToolResult } from '../protocol/types'; export interface ExploreCodebaseParams { repository?: string; path?: string; depth?: number; includeStats?: boolean; includeLanguages?: boolean; includeTopSymbols?: boolean; includeRecentActivity?: boolean; limit?: number; } export declare function exploreCodebase(params: ExploreCodebaseParams, searchEngine: SearchEngine): Promise; //# sourceMappingURL=exploreCodebase.d.ts.map