import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SweepStatus } from "./sweepstatus.js"; export type WebhookDataSweepUpdated = { walletID: string; sweepID: string; transferID?: string | undefined; status: SweepStatus; }; /** @internal */ export declare const WebhookDataSweepUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataSweepUpdated$Outbound = { walletID: string; sweepID: string; transferID?: string | undefined; status: string; }; /** @internal */ export declare const WebhookDataSweepUpdated$outboundSchema: z.ZodType; export declare function webhookDataSweepUpdatedToJSON(webhookDataSweepUpdated: WebhookDataSweepUpdated): string; export declare function webhookDataSweepUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatasweepupdated.d.ts.map