/** * Codebase Analyst Agent * Explores the codebase to understand its structure and patterns * * @deprecated Use runContextEnricher from context-enricher.ts instead. * This agent is kept for backward compatibility. */ import { type LanguageModel } from 'ai'; import type { CodebaseAnalysis, CodebaseAnalystInput } from './types.js'; /** * Run the Codebase Analyst agent */ export declare function runCodebaseAnalyst(model: LanguageModel, modelId: string, input: CodebaseAnalystInput, verbose?: boolean): Promise;