import { Observable } from 'rxjs'; import { HttpClientService } from '../shared/http-client.service'; export declare class ListRestService { private http; constructor(http: HttpClientService); query(path: string, body: object): Observable; queryEntity(path: string, body: object): Observable; }