import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { RefundStatus } from "./refundstatus.js"; export type WebhookDataRefundUpdated = { accountID: string; transferID: string; refundID: string; status: RefundStatus; }; /** @internal */ export declare const WebhookDataRefundUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataRefundUpdated$Outbound = { accountID: string; transferID: string; refundID: string; status: string; }; /** @internal */ export declare const WebhookDataRefundUpdated$outboundSchema: z.ZodType; export declare function webhookDataRefundUpdatedToJSON(webhookDataRefundUpdated: WebhookDataRefundUpdated): string; export declare function webhookDataRefundUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatarefundupdated.d.ts.map