import { Tenant } from './tenant.entity'; export declare enum UserRole { OWNER = "owner", ADMIN = "admin", EMPLOYEE = "employee" } export declare enum UserStatus { ACTIVE = "active", INACTIVE = "inactive", SUSPENDED = "suspended" } export declare class User { id: string; tenantId: string; phone: string; email: string; name: string; pinHash: string; biometricEnabled: boolean; biometricKey: string; role: string; permissions: Record; status: string; lastLoginAt: Date; failedAttempts: number; lockedUntil: Date; createdAt: Date; updatedAt: Date; tenant: Tenant; }