import { User } from './user.entity';
export declare class OtpEntity {
    id?: string;
    otpCode?: string;
    email?: string;
    expiresAt?: Date;
    isVerified?: boolean;
    user?: User;
    createdAt?: Date;
    updatedAt?: Date;
}
