import { defaultDateGeneratorHelper } from "src/common/helpers/default-date-genarate";
import { Otp } from "src/gestion-utilisateurs/otp/entities/otp.entity";
import { Profil } from "src/gestion-utilisateurs/profils/entities/profil.entity";
export type Roles = "admin" | "maker" | "checker";
export type Entite = "OBA" | "PARTNER";
export type Statut = "enable" | "disabled";
export declare class Utilisateur extends defaultDateGeneratorHelper {
    id: number;
    email: string;
    nom: string;
    prenoms: string;
    mot_de_passe: string;
    profil: Profil;
    otps: Otp[];
    updated_pwd: boolean;
    statut: Statut;
    tempPasswordExpiresAt: Date;
}
