import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ToolAnnotations } from "./ToolAnnotations"; export declare const Tool: core.serialization.ObjectSchema; export declare namespace Tool { interface Raw { name: string; title?: string | null; description?: string | null; inputSchema: Record; outputSchema?: Record | null; annotations?: ToolAnnotations.Raw | null; _meta?: Record | null; [key: string]: any; } }