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; outputSchema?: Record; annotations?: ElevenLabs.ToolAnnotations; meta?: Record; /** Accepts any additional properties */ [key: string]: any; }