import { SocialModel } from "./social.model"; import { ProfileModel } from "./profile.model"; export declare class UserModel { uuid: string; email: string; password?: string; permissions: string[]; social?: SocialModel; profile: ProfileModel; createdAt: Date; updatedAt: Date; }