import { Agent } from './agent.interface'; import { AgentContext, AgentMetadata, AgentFile } from '../types/agent.types'; import { BaseAgentWorkflow, AgentWorkflowState } from './base-agent-workflow'; export declare class FileStructureAgent 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: Record): Promise; protected generateSummary(data: Record): string; protected getTargetTokenRanges(): Record<'quick' | 'normal' | 'deep' | 'exhaustive', { min: number; max: number; }>; protected getDepthSpecificGuidance(mode: 'quick' | 'normal' | 'deep' | 'exhaustive'): string; private buildFileTree; private analyzeDirectoryStructure; private categorizeFiles; private getFileCategory; private parseAnalysisResult; protected generateFiles(data: Record, state: typeof AgentWorkflowState.State): Promise; } //# sourceMappingURL=file-structure-agent.d.ts.map