import { AgentFunctionBase } from './utils/index.js'; import { Agent } from '../agents/index.js'; import { AgentFunctionResult } from '../agent-core/index.js'; interface PlanDevelopmentParameters { goal: string; } export declare class PlanDevelopmentFunction extends AgentFunctionBase { name: string; description: string; parameters: any; buildExecutor(agent: Agent): (params: PlanDevelopmentParameters, rawParams?: string | undefined) => Promise; readAndAnalyzeFiles(agent: Agent, goal: string): Promise; } export {};