import { Tenant } from '../../tenants/entities/tenant.entity';
export declare class User {
    id: string;
    username: string;
    email: string;
    password: string;
    role: string;
    rank: string;
    tenantId: string;
    tenant: Tenant;
    displayName: string;
    avatarUrl: string;
    country: string;
    languages: string;
    bio: string;
    points: number;
    isOnline: boolean;
    lastVisited: Date;
    lastSeen: Date;
    isActive: boolean;
    createdAt: Date;
    updatedAt: Date;
}
