import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Payment methods allowed for disbursing funds. */ export declare const DisbursementPaymentMethodType: { readonly PushToCard: "push-to-card"; readonly RtpCredit: "rtp-credit"; readonly AchCreditSameDay: "ach-credit-same-day"; readonly AchCreditStandard: "ach-credit-standard"; }; /** * Payment methods allowed for disbursing funds. */ export type DisbursementPaymentMethodType = ClosedEnum; /** @internal */ export declare const DisbursementPaymentMethodType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DisbursementPaymentMethodType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=disbursementpaymentmethodtype.d.ts.map