import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type CreateSweepConfigErrorData = { walletID?: string | undefined; status?: string | undefined; pushPaymentMethodID?: string | undefined; pullPaymentMethodID?: string | undefined; statementDescriptor?: string | undefined; minimumBalance?: string | undefined; }; export declare class CreateSweepConfigError extends MoovError { walletID?: string | undefined; 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$: CreateSweepConfigErrorData; constructor(err: CreateSweepConfigErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const CreateSweepConfigError$inboundSchema: z.ZodType; /** @internal */ export type CreateSweepConfigError$Outbound = { walletID?: string | undefined; status?: string | undefined; pushPaymentMethodID?: string | undefined; pullPaymentMethodID?: string | undefined; statementDescriptor?: string | undefined; minimumBalance?: string | undefined; }; /** @internal */ export declare const CreateSweepConfigError$outboundSchema: z.ZodType; //# sourceMappingURL=createsweepconfigerror.d.ts.map