import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CancellationStatus } from "./cancellationstatus.js"; export type WebhookDataCancellationUpdated = { cancellationID: string; transferID: string; status: CancellationStatus; }; /** @internal */ export declare const WebhookDataCancellationUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataCancellationUpdated$Outbound = { cancellationID: string; transferID: string; status: string; }; /** @internal */ export declare const WebhookDataCancellationUpdated$outboundSchema: z.ZodType; export declare function webhookDataCancellationUpdatedToJSON(webhookDataCancellationUpdated: WebhookDataCancellationUpdated): string; export declare function webhookDataCancellationUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatacancellationupdated.d.ts.map