import { AngularFirestore, DocumentReference } from '@angular/fire/firestore'; import { SafetyUserRole } from '@digitaldealers/typings'; import { LocalStorageService } from 'angular-2-local-storage'; import { Observable } from 'rxjs'; export declare class UserRoleService { private _db; private _storage; private readonly collectionName; constructor(_db: AngularFirestore, _storage: LocalStorageService); getOne(id: string): Observable; getRef(id: string): DocumentReference; getList(id: string, options?: { limit: number; offset: number; }): Observable; save(data: SafetyUserRole): void; update(id: string, data: SafetyUserRole): Promise; delete(id: string): Promise; getCount(id: string): Observable; }