import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BenefitGrantDiscordProperties = { accountId?: string | null | undefined; guildId?: string | undefined; roleId?: string | undefined; grantedAccountId?: string | undefined; }; /** @internal */ export declare const BenefitGrantDiscordProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitGrantDiscordProperties$Outbound = { account_id?: string | null | undefined; guild_id?: string | undefined; role_id?: string | undefined; granted_account_id?: string | undefined; }; /** @internal */ export declare const BenefitGrantDiscordProperties$outboundSchema: z.ZodMiniType; export declare function benefitGrantDiscordPropertiesToJSON(benefitGrantDiscordProperties: BenefitGrantDiscordProperties): string; export declare function benefitGrantDiscordPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitgrantdiscordproperties.d.ts.map