import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const WebSearchSourceType: { readonly Url: "url"; }; export type WebSearchSourceType = ClosedEnum; export type WebSearchSource = { type: WebSearchSourceType; url: string; }; /** @internal */ export declare const WebSearchSourceType$inboundSchema: z.ZodEnum; /** @internal */ export declare const WebSearchSourceType$outboundSchema: z.ZodEnum; /** @internal */ export declare const WebSearchSource$inboundSchema: z.ZodType; /** @internal */ export type WebSearchSource$Outbound = { type: string; url: string; }; /** @internal */ export declare const WebSearchSource$outboundSchema: z.ZodType; export declare function webSearchSourceToJSON(webSearchSource: WebSearchSource): string; export declare function webSearchSourceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=websearchsource.d.ts.map