import type { IStore } from '../../libs/cargo-hold'; import type { SearchDomainState } from '../../libs/search-domain'; import type { HasLens } from '../../libs/util-domain-state'; import type { Observable } from 'rxjs'; import type { SearchFacade } from './facade.types'; export declare const makeSearchFacade: (options: HasLens) => (store: IStore) => Observable;