import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AssignProductImage = { /** * Unique identifier for a product or product option image resource. */ imageID: string; }; /** @internal */ export declare const AssignProductImage$inboundSchema: z.ZodType; /** @internal */ export type AssignProductImage$Outbound = { imageID: string; }; /** @internal */ export declare const AssignProductImage$outboundSchema: z.ZodType; export declare function assignProductImageToJSON(assignProductImage: AssignProductImage): string; export declare function assignProductImageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=assignproductimage.d.ts.map