import type { SerializedAgentT, AgentInput } from "./index.js"; import { Tool } from "./tools/index.js"; import { BaseLLM } from "../llms/index.js"; export declare const deserializeHelper: (llm: BaseLLM | undefined, tools: Tool[] | undefined, data: SerializedAgentT, fromLLMAndTools: (llm: BaseLLM, tools: Tool[], args: U) => Z, fromConstructor: (args: V) => Z) => Promise;