import * as z from "zod/v4-mini"; /** * Properties to create a benefit of type `discord`. */ export type BenefitDiscordCreateProperties = { guildToken: string; /** * The ID of the Discord role to grant. */ roleId: string; /** * Whether to kick the member from the Discord server on revocation. */ kickMember: boolean; }; /** @internal */ export type BenefitDiscordCreateProperties$Outbound = { guild_token: string; role_id: string; kick_member: boolean; }; /** @internal */ export declare const BenefitDiscordCreateProperties$outboundSchema: z.ZodMiniType; export declare function benefitDiscordCreatePropertiesToJSON(benefitDiscordCreateProperties: BenefitDiscordCreateProperties): string; //# sourceMappingURL=benefitdiscordcreateproperties.d.ts.map