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