import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Benefit, Benefit$Outbound } from "./benefit.js"; /** * Sent when a benefit is updated. * * @remarks * * **Discord & Slack support:** Basic */ export type WebhookBenefitUpdatedPayload = { type: "benefit.updated"; timestamp: Date; data: Benefit; }; /** @internal */ export declare const WebhookBenefitUpdatedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookBenefitUpdatedPayload$Outbound = { type: "benefit.updated"; timestamp: string; data: Benefit$Outbound; }; /** @internal */ export declare const WebhookBenefitUpdatedPayload$outboundSchema: z.ZodMiniType; export declare function webhookBenefitUpdatedPayloadToJSON(webhookBenefitUpdatedPayload: WebhookBenefitUpdatedPayload): string; export declare function webhookBenefitUpdatedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookbenefitupdatedpayload.d.ts.map