import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AchLocation = { address: string; city: string; postalCode: string; postalCodeExtension: string; state: string; }; /** @internal */ export declare const AchLocation$inboundSchema: z.ZodType; /** @internal */ export type AchLocation$Outbound = { address: string; city: string; postalCode: string; postalCodeExtension: string; state: string; }; /** @internal */ export declare const AchLocation$outboundSchema: z.ZodType; export declare function achLocationToJSON(achLocation: AchLocation): string; export declare function achLocationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achlocation.d.ts.map