import type * as ElevenLabs from "../index";
/**
 * Definition for a tool the client can call.
 */
export interface Tool {
    name: string;
    title?: string;
    description?: string;
    inputSchema: Record<string, unknown>;
    outputSchema?: Record<string, unknown>;
    annotations?: ElevenLabs.ToolAnnotations;
    meta?: Record<string, unknown>;
    /** Accepts any additional properties */
    [key: string]: any;
}
