import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BenefitGrantWebhook, BenefitGrantWebhook$Outbound } from "./benefitgrantwebhook.js"; /** * Sent when a benefit grant is revoked. * * @remarks * * **Discord & Slack support:** Basic */ export type WebhookBenefitGrantRevokedPayload = { type: "benefit_grant.revoked"; timestamp: Date; data: BenefitGrantWebhook; }; /** @internal */ export declare const WebhookBenefitGrantRevokedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookBenefitGrantRevokedPayload$Outbound = { type: "benefit_grant.revoked"; timestamp: string; data: BenefitGrantWebhook$Outbound; }; /** @internal */ export declare const WebhookBenefitGrantRevokedPayload$outboundSchema: z.ZodMiniType; export declare function webhookBenefitGrantRevokedPayloadToJSON(webhookBenefitGrantRevokedPayload: WebhookBenefitGrantRevokedPayload): string; export declare function webhookBenefitGrantRevokedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookbenefitgrantrevokedpayload.d.ts.map