import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
import { SearchComboBoxGenericModel } from './search-combo-box-generic.model';
export declare class SearchComboBoxGenericService {
    private http;
    constructor(http: HttpClient);
    getItems(searchText: string, componentModel: SearchComboBoxGenericModel): Observable<any>;
    private handleError(error);
}
