import { Agent } from './agent.interface'; import { AgentContext, AgentMetadata, AgentFile } from '../types/agent.types'; import { BaseAgentWorkflow, AgentWorkflowState } from './base-agent-workflow'; export declare class ArchitectureAnalyzerAgent extends BaseAgentWorkflow implements Agent { getMetadata(): AgentMetadata; canExecute(context: AgentContext): Promise; estimateTokens(context: AgentContext): Promise; protected getAgentName(): string; protected buildSystemPrompt(_context: AgentContext): Promise; protected buildHumanPrompt(context: AgentContext): Promise; protected parseAnalysis(analysis: string): Promise>; protected formatMarkdown(data: Record, _state: typeof AgentWorkflowState.State): Promise; protected generateSummary(data: Record): string; private detectArchitectureStyle; private getRelevantCategories; private analyzeProjectStructure; private parseAnalysisResult; protected generateFiles(data: Record, state: typeof AgentWorkflowState.State): Promise; } //# sourceMappingURL=architecture-analyzer-agent.d.ts.map