import { BaseModel } from './base.model'; export declare class UserModel extends BaseModel { name?: string; email?: string; username?: string; password?: string; lang?: string; firebaseUid?: string; role?: { role: string; id: number; keylang: string; }; permissions?: any[]; configurations?: {}; last_login?: any; company?: any; companies?: any[]; tz_offset?: number; all_plants?: boolean; all_vehicles?: boolean; all_centers?: boolean; all_persons?: boolean; all_reports?: boolean; constructor(name?: string, email?: string, username?: string, password?: string, lang?: string, firebaseUid?: string, role?: { role: string; id: number; keylang: string; }, permissions?: any[], configurations?: {}, last_login?: any, company?: any, companies?: any[], tz_offset?: number, all_plants?: boolean, all_vehicles?: boolean, all_centers?: boolean, all_persons?: boolean, all_reports?: boolean); static fromJsonLogin(jsonData: any): UserModel; static fromJson(jsonData: any): UserModel; }