import { TUser } from '@cromwell/core'; import { BasePageEntity } from './base-page.entity'; import { DashboardEntity } from './dashboard-entity.entity'; import { UserMeta } from './meta/user-meta.entity'; import { Post } from './post.entity'; import { Role } from './role.entity'; export declare class User extends BasePageEntity implements TUser { fullName?: string | null; email?: string | null; avatar?: string | null; bio?: string | null; roles?: Role[] | null; address?: string | null; phone?: string | null; password: string; refreshTokens?: string | null; resetPasswordCode?: string | null; resetPasswordDate?: Date | null; posts?: Post[] | null; metaRecords?: UserMeta[] | null; layout?: DashboardEntity | null; } //# sourceMappingURL=user.entity.d.ts.map