import * as z from "zod/v4-mini"; import { OpenEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export declare const Role: { readonly Owner: "owner"; readonly Admin: "admin"; readonly Viewer: "viewer"; readonly Member: "member"; readonly Disabled: "disabled"; readonly Pending: "pending"; }; export type Role = OpenEnum; export type User = { id: string; username: string; displayName: string; thumbUrl: string | null; avatarUrl: string | null; role: Role; /** * 0-100 */ trustScore: number; totalViolations: number; serverId: string; serverName: string; lastActivityAt: Date | null; sessionCount: number; createdAt: Date; }; /** @internal */ export declare const Role$inboundSchema: z.ZodMiniType; /** @internal */ export declare const User$inboundSchema: z.ZodMiniType; export declare function userFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=user.d.ts.map