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 new benefit grant is created. * * @remarks * * **Discord & Slack support:** Basic */ export type WebhookBenefitGrantCreatedPayload = { type: "benefit_grant.created"; timestamp: Date; data: BenefitGrantWebhook; }; /** @internal */ export declare const WebhookBenefitGrantCreatedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookBenefitGrantCreatedPayload$Outbound = { type: "benefit_grant.created"; timestamp: string; data: BenefitGrantWebhook$Outbound; }; /** @internal */ export declare const WebhookBenefitGrantCreatedPayload$outboundSchema: z.ZodMiniType; export declare function webhookBenefitGrantCreatedPayloadToJSON(webhookBenefitGrantCreatedPayload: WebhookBenefitGrantCreatedPayload): string; export declare function webhookBenefitGrantCreatedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookbenefitgrantcreatedpayload.d.ts.map