import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type PatchSweepConfigErrorData = { status?: string | undefined; pushPaymentMethodID?: string | undefined; pullPaymentMethodID?: string | undefined; statementDescriptor?: string | undefined; minimumBalance?: string | undefined; }; export declare class PatchSweepConfigError extends MoovError { status?: string | undefined; pushPaymentMethodID?: string | undefined; pullPaymentMethodID?: string | undefined; statementDescriptor?: string | undefined; minimumBalance?: string | undefined; /** The original data that was passed to this error instance. */ data$: PatchSweepConfigErrorData; constructor(err: PatchSweepConfigErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PatchSweepConfigError$inboundSchema: z.ZodType; /** @internal */ export type PatchSweepConfigError$Outbound = { status?: string | undefined; pushPaymentMethodID?: string | undefined; pullPaymentMethodID?: string | undefined; statementDescriptor?: string | undefined; minimumBalance?: string | undefined; }; /** @internal */ export declare const PatchSweepConfigError$outboundSchema: z.ZodType; //# sourceMappingURL=patchsweepconfigerror.d.ts.map