import { Tool } from "./tool";
export interface Agent {
    name: string;
    description: string;
    tools: Tool[];
}
export declare const createAgent: (name: string, description: string, tools: Tool[]) => Agent;
export declare const findTool: (agent: Agent, tag: string) => Tool | undefined;
