import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; import { PaymentIntentStatus } from "./payment-intent-status.js"; export type PaymentPrepareResponse = { paymentIntentId: string; /** * Non-negative integer amount in USDC atomic units. */ maxAmountWei: string; status: PaymentIntentStatus; [additionalProperties: string]: unknown; }; /** @internal */ export declare const PaymentPrepareResponse$inboundSchema: z.ZodMiniType; export declare function paymentPrepareResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payment-prepare-response.d.ts.map