import { Agent, Tool } from "./index.js"; import { BaseLLM } from "../llms/index.js"; export declare const loadAgent: (uri: string, llmAndTools?: { llm?: BaseLLM; tools?: Tool[]; }) => Promise;