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 OrderReceipt = { /** * The URL to the receipt PDF. */ url: string; }; /** @internal */ export declare const OrderReceipt$inboundSchema: z.ZodMiniType; export declare function orderReceiptFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderreceipt.d.ts.map