import { AbstractUserProfile } from './abstract-user-profile.entity'; import { BaseEntity } from './base.entity'; export declare class User extends BaseEntity { id: string; email: string; emailVerified: boolean; profile?: TProfile; }