import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const HostedToolDefinitionType: { readonly FileSearch: "file_search"; readonly WebSearchPreview: "web_search_preview"; readonly ComputerUsePreview: "computer_use_preview"; readonly CodeInterpreter: "code_interpreter"; readonly ImageGeneration: "image_generation"; }; export type HostedToolDefinitionType = ClosedEnum; /** * Hosted tool definition: Shorthand hosted-tool selector for built-in tool types. This is a compatibility form that overlaps with the detailed per-tool schemas. */ export type HostedToolDefinition = { type: HostedToolDefinitionType; }; /** @internal */ export declare const HostedToolDefinitionType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const HostedToolDefinitionType$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const HostedToolDefinition$inboundSchema: z.ZodType; /** @internal */ export type HostedToolDefinition$Outbound = { type: string; }; /** @internal */ export declare const HostedToolDefinition$outboundSchema: z.ZodType; export declare function hostedToolDefinitionToJSON(hostedToolDefinition: HostedToolDefinition): string; export declare function hostedToolDefinitionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hostedtooldefinition.d.ts.map