import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ImageDetail } from "./imagedetail.js"; export type ImageURL = { url: string; detail?: ImageDetail | null | undefined; }; /** @internal */ export declare const ImageURL$inboundSchema: z.ZodType; /** @internal */ export type ImageURL$Outbound = { url: string; detail?: string | null | undefined; }; /** @internal */ export declare const ImageURL$outboundSchema: z.ZodType; export declare function imageURLToJSON(imageURL: ImageURL): string; export declare function imageURLFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=imageurl.d.ts.map