import { FromSchema, JSONSchema } from 'json-schema-to-ts'; import { Promisable, BetaRunnableTool } from "../../lib/tools/BetaRunnableTool.js"; import { BetaToolResultContentBlockParam } from "../../resources/beta.js"; type NoInfer = T extends infer R ? R : never; /** * Creates a Tool with a provided JSON schema that can be passed * to the `.toolRunner()` method. The schema is used to automatically validate * the input arguments for the tool. */ export declare function betaTool & { type: 'object'; }>(options: { name: string; inputSchema: Schema; description: string; run: (args: NoInfer>) => Promisable>; }): BetaRunnableTool>>; export {}; //# sourceMappingURL=json-schema.d.ts.map