import * as z from "zod/v3"; import * as components from "../components/index.js"; import { MoovError } from "./mooverror.js"; export type CreateAccountErrorData = { accountType?: string | undefined; profile?: components.CreateProfileError | undefined; metadata?: string | undefined; termsOfService?: components.TermsOfServiceError | undefined; foreignID?: string | undefined; customerSupport?: components.CustomerSupportError | undefined; settings?: components.CreateAccountSettings | undefined; capabilities?: { [k: string]: string; } | undefined; }; export declare class CreateAccountError extends MoovError { accountType?: string | undefined; profile?: components.CreateProfileError | undefined; metadata?: string | undefined; termsOfService?: components.TermsOfServiceError | undefined; foreignID?: string | undefined; customerSupport?: components.CustomerSupportError | undefined; settings?: components.CreateAccountSettings | undefined; capabilities?: { [k: string]: string; } | undefined; /** The original data that was passed to this error instance. */ data$: CreateAccountErrorData; constructor(err: CreateAccountErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const CreateAccountError$inboundSchema: z.ZodType; /** @internal */ export type CreateAccountError$Outbound = { accountType?: string | undefined; profile?: components.CreateProfileError$Outbound | undefined; metadata?: string | undefined; termsOfService?: components.TermsOfServiceError$Outbound | undefined; foreignID?: string | undefined; customerSupport?: components.CustomerSupportError$Outbound | undefined; settings?: components.CreateAccountSettings$Outbound | undefined; capabilities?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CreateAccountError$outboundSchema: z.ZodType; //# sourceMappingURL=createaccounterror.d.ts.map