import { OtpEntity } from './otp.entity';
export declare class User {
    id?: string;
    firstName?: string;
    lastName?: string;
    email?: string;
    password?: string;
    roles?: string[];
    otps?: OtpEntity[];
}
