import { AgentFunctionResult, LlmApi, Tokenizer } from '../agent-core/index.js'; import { LlmAgentFunctionBase } from './utils/index.js'; import { Agent } from '../agents/index.js'; interface PlanWebResearchFuncParameters { goal: string; } export declare class PlanWebResearchFunction extends LlmAgentFunctionBase { constructor(llm: LlmApi, tokenizer: Tokenizer); name: string; description: string; parameters: any; buildExecutor({ context }: Agent): (params: PlanWebResearchFuncParameters, rawParams?: string) => Promise; private onSuccess; private onError; private getPlanningPrompt; private getFormattingPrompt; } export {};