import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookDataRefundCreated = { accountID: string; transferID: string; refundID: string; }; /** @internal */ export declare const WebhookDataRefundCreated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataRefundCreated$Outbound = { accountID: string; transferID: string; refundID: string; }; /** @internal */ export declare const WebhookDataRefundCreated$outboundSchema: z.ZodType; export declare function webhookDataRefundCreatedToJSON(webhookDataRefundCreated: WebhookDataRefundCreated): string; export declare function webhookDataRefundCreatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatarefundcreated.d.ts.map