import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Refund, Refund$Outbound } from "./refund.js"; /** * Sent when a refund is updated. * * @remarks * * **Discord & Slack support:** Full */ export type WebhookRefundUpdatedPayload = { type: "refund.updated"; timestamp: Date; data: Refund; }; /** @internal */ export declare const WebhookRefundUpdatedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookRefundUpdatedPayload$Outbound = { type: "refund.updated"; timestamp: string; data: Refund$Outbound; }; /** @internal */ export declare const WebhookRefundUpdatedPayload$outboundSchema: z.ZodMiniType; export declare function webhookRefundUpdatedPayloadToJSON(webhookRefundUpdatedPayload: WebhookRefundUpdatedPayload): string; export declare function webhookRefundUpdatedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookrefundupdatedpayload.d.ts.map