import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { PaymentActionType } from "./payment-action-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type PaymentAction = { type?: PaymentActionType | undefined; url?: string | undefined; }; /** @internal */ export declare const PaymentAction$inboundSchema: z.ZodMiniType; export declare function paymentActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payment-action.d.ts.map