import { SectionModel } from './section.model'; import { PermissionModel } from './permission.model'; export declare class UserModel { id: number; login: string; password: string; name: string; firstName: string; fullName: string; serialNumber: string; type: number; dateBegin: any; dateEnd: any; entity: number; management: number; email: string; administrator: boolean; active: boolean; comment: string; sections: SectionModel[]; permissions: PermissionModel[]; constructor(); getFullName(): string; fromJSON(json: any): this; } //# sourceMappingURL=user.model.d.ts.map