import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request body for creating or updating image metadata. */ export type ImageMetadataRequest = { /** * Alternative text for the image. */ altText?: string | undefined; }; /** @internal */ export declare const ImageMetadataRequest$inboundSchema: z.ZodType; /** @internal */ export type ImageMetadataRequest$Outbound = { altText?: string | undefined; }; /** @internal */ export declare const ImageMetadataRequest$outboundSchema: z.ZodType; export declare function imageMetadataRequestToJSON(imageMetadataRequest: ImageMetadataRequest): string; export declare function imageMetadataRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=imagemetadatarequest.d.ts.map