import { ITool, ToolOutput } from './ITool';
export declare class AnthropicTool implements ITool {
    name: string;
    description: string;
    private client;
    constructor();
    execute(input: string): Promise<ToolOutput>;
}
