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