import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CardPayment = { statementDescriptor?: string | undefined; }; export type AchPayment = { companyName?: string | undefined; }; export type CreateAccountSettings = { cardPayment?: CardPayment | undefined; achPayment?: AchPayment | undefined; }; /** @internal */ export declare const CardPayment$inboundSchema: z.ZodType; /** @internal */ export type CardPayment$Outbound = { statementDescriptor?: string | undefined; }; /** @internal */ export declare const CardPayment$outboundSchema: z.ZodType; export declare function cardPaymentToJSON(cardPayment: CardPayment): string; export declare function cardPaymentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AchPayment$inboundSchema: z.ZodType; /** @internal */ export type AchPayment$Outbound = { companyName?: string | undefined; }; /** @internal */ export declare const AchPayment$outboundSchema: z.ZodType; export declare function achPaymentToJSON(achPayment: AchPayment): string; export declare function achPaymentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CreateAccountSettings$inboundSchema: z.ZodType; /** @internal */ export type CreateAccountSettings$Outbound = { cardPayment?: CardPayment$Outbound | undefined; achPayment?: AchPayment$Outbound | undefined; }; /** @internal */ export declare const CreateAccountSettings$outboundSchema: z.ZodType; export declare function createAccountSettingsToJSON(createAccountSettings: CreateAccountSettings): string; export declare function createAccountSettingsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createaccountsettings.d.ts.map