import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Order's receipt data. */ export type CustomerOrderReceipt = { /** * The URL to the receipt PDF. */ url: string; }; /** @internal */ export declare const CustomerOrderReceipt$inboundSchema: z.ZodMiniType; export declare function customerOrderReceiptFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerorderreceipt.d.ts.map