import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Status: { readonly Enabled: "enabled"; readonly Disabled: "disabled"; }; export type Status = ClosedEnum; export type PatchSweepConfig = { status?: Status | null | undefined; pushPaymentMethodID?: string | null | undefined; pullPaymentMethodID?: string | null | undefined; statementDescriptor?: string | null | undefined; minimumBalance?: string | null | undefined; }; /** @internal */ export declare const Status$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Status$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PatchSweepConfig$inboundSchema: z.ZodType; /** @internal */ export type PatchSweepConfig$Outbound = { status?: string | null | undefined; pushPaymentMethodID?: string | null | undefined; pullPaymentMethodID?: string | null | undefined; statementDescriptor?: string | null | undefined; minimumBalance?: string | null | undefined; }; /** @internal */ export declare const PatchSweepConfig$outboundSchema: z.ZodType; export declare function patchSweepConfigToJSON(patchSweepConfig: PatchSweepConfig): string; export declare function patchSweepConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=patchsweepconfig.d.ts.map