import { LocalStorageService } from "./local-storage.service"; export declare class UserModel { credentials: { userName: string; password: string; }; firstName: string; lastName: string; permissions: any; roles: [string]; authToken: string; refreshToken: string; url: string; port: number; populateFromLocalStorage(localStorageService: LocalStorageService): void; hasAuthToken(): boolean; readonly fullName: string; }