///
import { SelectItem } from "../types";
interface IProps {
items: TEntity[];
itemFormatter: (value: TEntity) => SelectItem;
selectedValue: TEntity | TEntity[];
captionSearchLoader: string;
captionNothingFound: string;
isLoading: boolean;
hasMoreData: boolean;
onItemSelected: (item: TEntity) => void;
isForMultiSelect?: boolean;
}
declare const makeItemsComponents: (props: IProps) => JSX.Element[];
export { makeItemsComponents, IProps as ItemsComponentsProps };