import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The payment method type that represents a payment rail and directionality */ export declare const PaymentMethodType: { readonly MoovWallet: "moov-wallet"; readonly AchDebitFund: "ach-debit-fund"; readonly AchDebitCollect: "ach-debit-collect"; readonly AchCreditStandard: "ach-credit-standard"; readonly AchCreditSameDay: "ach-credit-same-day"; readonly RtpCredit: "rtp-credit"; readonly CardPayment: "card-payment"; readonly PushToCard: "push-to-card"; readonly PullFromCard: "pull-from-card"; readonly ApplePay: "apple-pay"; readonly CardPresentPayment: "card-present-payment"; }; /** * The payment method type that represents a payment rail and directionality */ export type PaymentMethodType = ClosedEnum; /** @internal */ export declare const PaymentMethodType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentMethodType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=paymentmethodtype.d.ts.map