import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Annotations } from "./annotations.js"; /** * Image content for a message. */ export type ImageContent = { type: "image"; data: string; mimeType: string; annotations?: Annotations | null | undefined; meta?: { [k: string]: any; } | null | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const ImageContent$inboundSchema: z.ZodType; export declare function imageContentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=imagecontent.d.ts.map