export declare class UserEntity {
    id: string;
    first_name: string;
    last_name: string;
    password: string;
    email: string;
    contact_no: number;
    profile_picture: string;
    status: number;
    access_token: string;
    access_token_expiry: string;
    updated_at: Date;
    created_at: Date;
    deleted_at: Date;
    hashPassword(): Promise<void>;
}
