import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type InputImageMask = { fileId?: string | undefined; imageUrl?: string | undefined; }; /** @internal */ export declare const InputImageMask$inboundSchema: z.ZodType; /** @internal */ export type InputImageMask$Outbound = { file_id?: string | undefined; image_url?: string | undefined; }; /** @internal */ export declare const InputImageMask$outboundSchema: z.ZodType; export declare function inputImageMaskToJSON(inputImageMask: InputImageMask): string; export declare function inputImageMaskFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=inputimagemask.d.ts.map