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 created regardless of status. * * @remarks * * **Discord & Slack support:** Full */ export type WebhookRefundCreatedPayload = { type: "refund.created"; timestamp: Date; data: Refund; }; /** @internal */ export declare const WebhookRefundCreatedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookRefundCreatedPayload$Outbound = { type: "refund.created"; timestamp: string; data: Refund$Outbound; }; /** @internal */ export declare const WebhookRefundCreatedPayload$outboundSchema: z.ZodMiniType; export declare function webhookRefundCreatedPayloadToJSON(webhookRefundCreatedPayload: WebhookRefundCreatedPayload): string; export declare function webhookRefundCreatedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookrefundcreatedpayload.d.ts.map