import * as React from "react"; import { SelectionMode } from "../FlatSelect"; import { Height } from "../utils"; interface IProps { searchText: string; headerInfo: string; placeholder?: string; showClearFilter: boolean; selectionMode: SelectionMode; canLoadMoreDataRightNow: boolean; disabled?: boolean; height?: Height; onSearchChange: (newSearchTerm: string) => void; onClearFilter: () => void; onLoadNextPortion: () => void; makeSelectedComponents?: () => JSX.Element[]; resetFilterCaption?: string; closeCaption?: string; } declare const AsyncSearchSelectBase: React.FC; export { AsyncSearchSelectBase };