import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookDataSweepCreated = { walletID: string; sweepID: string; }; /** @internal */ export declare const WebhookDataSweepCreated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataSweepCreated$Outbound = { walletID: string; sweepID: string; }; /** @internal */ export declare const WebhookDataSweepCreated$outboundSchema: z.ZodType; export declare function webhookDataSweepCreatedToJSON(webhookDataSweepCreated: WebhookDataSweepCreated): string; export declare function webhookDataSweepCreatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatasweepcreated.d.ts.map