import { Observable } from 'rxjs'; import { DokuSelectSearchMatcherFn } from '../select.component'; import { DokuSelectOptionItemRecord } from '../select.interface'; export declare class SearchUtil { static useSearchMatcher(items: DokuSelectOptionItemRecord[] | undefined, options: { bindLabel: string; search$: Observable; searchable?: boolean; customSearchMatcherFn?: DokuSelectSearchMatcherFn; }): Observable; private static defaultSearchMatcherFn; }