import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmountDecimalValidationError, AmountDecimalValidationError$Outbound } from "./amountdecimalvalidationerror.js"; import { CreateTransferLineItemOptionValidationError, CreateTransferLineItemOptionValidationError$Outbound } from "./createtransferlineitemoptionvalidationerror.js"; export type CreateTransferLineItemValidationError = { productID?: string | undefined; name?: string | undefined; basePrice?: AmountDecimalValidationError | undefined; options?: { [k: string]: CreateTransferLineItemOptionValidationError; } | undefined; quantity?: string | undefined; imageIDs?: string | undefined; }; /** @internal */ export declare const CreateTransferLineItemValidationError$inboundSchema: z.ZodType; /** @internal */ export type CreateTransferLineItemValidationError$Outbound = { productID?: string | undefined; name?: string | undefined; basePrice?: AmountDecimalValidationError$Outbound | undefined; options?: { [k: string]: CreateTransferLineItemOptionValidationError$Outbound; } | undefined; quantity?: string | undefined; imageIDs?: string | undefined; }; /** @internal */ export declare const CreateTransferLineItemValidationError$outboundSchema: z.ZodType; export declare function createTransferLineItemValidationErrorToJSON(createTransferLineItemValidationError: CreateTransferLineItemValidationError): string; export declare function createTransferLineItemValidationErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createtransferlineitemvalidationerror.d.ts.map