import { Course } from '../course/course.entity';
export declare class User {
    id: number;
    email: string;
    password: string;
    phone: string;
    gender: string;
    role: string;
    resetToken: string | null;
    isVerified: boolean;
    verificationOtp: string | null;
    otpExpires: Date | null;
    courses: Course[];
}
