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 PaymentSettleResponse = { paymentIntentId: string; network: string; /** * Non-negative integer amount in USDC atomic units. */ maxAmountWei: string; /** * Non-negative integer amount in USDC atomic units. */ finalAmountWei: string; status: PaymentIntentStatus; meterSubject?: string | undefined; lineItems?: Array<{ [k: string]: any; }> | undefined; /** * Non-negative integer amount in USDC atomic units. */ providerAmountWei?: string | undefined; /** * Non-negative integer amount in USDC atomic units. */ platformFeeWei?: string | undefined; txHash?: string | undefined; confirmedAt?: number | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const PaymentSettleResponse$inboundSchema: z.ZodMiniType; export declare function paymentSettleResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payment-settle-response.d.ts.map