import { ToolDefinition } from './tools'; export interface AgentConfig { name: string; description: string; model: string; systemPrompt: string; tools: ToolDefinition[]; } export declare const AGENTS: Record;