import { BaseEntity } from '../database/base.entity';
import { RoleEntity } from './role.entity';
export declare class UserEntity extends BaseEntity {
    name: string;
    email: string;
    phone: string | null;
    password_hash: string;
    is_active: boolean;
    last_login_at: Date | null;
    role: RoleEntity;
    role_id: string;
}
