import { ICommonsUniquelyIdentified } from 'tscommons-models'; import { ICommonsAdamantineManagedSecondClassUser } from 'tscommons-models-adamantine'; import { IIsDeleted } from './iis-deleted'; import { INamespace } from './inamespace'; export interface IUser extends ICommonsAdamantineManagedSecondClassUser, IIsDeleted, ICommonsUniquelyIdentified { namespace: number; system: boolean; color?: string; icon?: string; avatarUrl?: string; } export declare function isIUser(test: unknown): test is IUser;