import { ListSearchService, ListItemModel } from 'e5core-angular-services';
import { KeyValuePair } from '../util/key-value-pair';
import { BehaviorSubject } from 'rxjs';
export declare class CachedListSearchService {
    private listService;
    cache: KeyValuePair[];
    constructor(listService: ListSearchService);
    search(listId: any, options: any): BehaviorSubject<ListItemModel[]>;
}
