import { Tool } from "./tool";
export declare class Agent {
    private tools;
    name: string;
    description: string;
    constructor(name: string, description: string, tools: Tool[]);
    getTools(): Tool[];
}
