import { HT_IStorageService } from "../storage/ht_storage.service.interface"; import { HT_HttpService } from "../ht_http.service"; export declare class HaventecClient { test?: boolean; private dataService; private deviceService; http: HT_HttpService; constructor(test?: boolean); init(username: string): void; getHashPin(pin: string): string; setStorageService(storageService: HT_IStorageService): void; getUsername(): any; getAccessToken(): string; getDeviceUuid(): string; getUserUuid(): string; getApplicationUuid(): string; getAuthKey(): string; updateDataFromResponse(response: any): void; invalidateToken(): void; isAdmin(): boolean; isANAdmin(): boolean; isANSupport(): boolean; isRole(role: string): boolean; purge(): void; getDeviceName(): string; }