import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ACHPaymentDetailsError = { companyEntryDescription?: string | undefined; originatingCompanyName?: string | undefined; }; /** @internal */ export declare const ACHPaymentDetailsError$inboundSchema: z.ZodType; /** @internal */ export type ACHPaymentDetailsError$Outbound = { companyEntryDescription?: string | undefined; originatingCompanyName?: string | undefined; }; /** @internal */ export declare const ACHPaymentDetailsError$outboundSchema: z.ZodType; export declare function achPaymentDetailsErrorToJSON(achPaymentDetailsError: ACHPaymentDetailsError): string; export declare function achPaymentDetailsErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achpaymentdetailserror.d.ts.map