import { Project } from "./Project"; import { Authority } from "./Authority"; export declare class UserInfo { token: string; user: User; } export declare class UserResponse { status: boolean; data: User; } export declare class User { id: number; login: string; passwordHash: string; firstName: string; lastName: string; email: string; activated: boolean; dateValue: boolean; langKey: string; activationKey: string; resetKey: string; createdBy: string; createdDate: Date; resetDate: Date; lastModifiedBy: string; lastModifiedDate: Date; cellPhone: string; domain: string; photo: string; authorities: Array; projects: Array; } //# sourceMappingURL=UserInfo.d.ts.map