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 cycled, * * @remarks * meaning the related subscription has been renewed for another period. * * **Discord & Slack support:** Basic */ export type WebhookBenefitGrantCycledPayload = { type: "benefit_grant.cycled"; timestamp: Date; data: BenefitGrantWebhook; }; /** @internal */ export declare const WebhookBenefitGrantCycledPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookBenefitGrantCycledPayload$Outbound = { type: "benefit_grant.cycled"; timestamp: string; data: BenefitGrantWebhook$Outbound; }; /** @internal */ export declare const WebhookBenefitGrantCycledPayload$outboundSchema: z.ZodMiniType; export declare function webhookBenefitGrantCycledPayloadToJSON(webhookBenefitGrantCycledPayload: WebhookBenefitGrantCycledPayload): string; export declare function webhookBenefitGrantCycledPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookbenefitgrantcycledpayload.d.ts.map