import { Observable } from 'rxjs'; import { HttpClientService } from '../shared/http-client.service'; import { ServiceType } from '../../core/enums/serviceType'; export declare class InputRestAutoCompleteService { private http; constructor(http: HttpClientService); query(path: string, body: object, service?: ServiceType): Observable; }