import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Properties for a benefit of type `discord`. */ export type BenefitDiscordProperties = { /** * The ID of the Discord server. */ guildId: string; /** * The ID of the Discord role to grant. */ roleId: string; /** * Whether to kick the member from the Discord server on revocation. */ kickMember: boolean; guildToken: string; }; /** @internal */ export declare const BenefitDiscordProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitDiscordProperties$Outbound = { guild_id: string; role_id: string; kick_member: boolean; guild_token: string; }; /** @internal */ export declare const BenefitDiscordProperties$outboundSchema: z.ZodMiniType; export declare function benefitDiscordPropertiesToJSON(benefitDiscordProperties: BenefitDiscordProperties): string; export declare function benefitDiscordPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitdiscordproperties.d.ts.map