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 updated. * * @remarks * * **Discord & Slack support:** Basic */ export type WebhookBenefitGrantUpdatedPayload = { type: "benefit_grant.updated"; timestamp: Date; data: BenefitGrantWebhook; }; /** @internal */ export declare const WebhookBenefitGrantUpdatedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookBenefitGrantUpdatedPayload$Outbound = { type: "benefit_grant.updated"; timestamp: string; data: BenefitGrantWebhook$Outbound; }; /** @internal */ export declare const WebhookBenefitGrantUpdatedPayload$outboundSchema: z.ZodMiniType; export declare function webhookBenefitGrantUpdatedPayloadToJSON(webhookBenefitGrantUpdatedPayload: WebhookBenefitGrantUpdatedPayload): string; export declare function webhookBenefitGrantUpdatedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookbenefitgrantupdatedpayload.d.ts.map