import { Observable, BehaviorSubject } from 'rxjs'; import { Property } from './property-models'; import { HttpClient } from '@angular/common/http'; import { AuthService } from '../auth/auth.service'; export declare class PropertyService { private httpClient; private authService; private coreConfig; private _baseURL; properties: BehaviorSubject<{ [name: string]: Property; }>; constructor(httpClient: HttpClient, authService: AuthService, coreConfig: any); getProperties(): Observable<{ [name: string]: Property; }>; updateProperties(properties: Property[]): Observable; }