import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AchPaymentMethod = { last4?: string | undefined; bankName?: string | undefined; }; /** @internal */ export declare const AchPaymentMethod$inboundSchema: z.ZodType; export declare function achPaymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achpaymentmethod.d.ts.map