import { default as React } from 'react'; import { ItemPickerListProps } from '../ItemPickerNew/ItemPickerNew.types'; import { BaseItemType, BaseSectionType } from '../ItemPickerNew/types/baseItemSectionType.types'; import { ItemPickerListRef } from './ItemPickerList.types'; declare const ItemPickerListInner: ({ items, recents, sections, actions, texts, isLoading, selectedItem, scrollbarProps, searchBarProps, showItemsSectionLabel, onItemSelect, onRefresh, containerHeight, isVisible, onSectionChange, containerRef: containerRefProp, includeFooter, includeSearchBar, onLoadedData, isDropdown, emptyListIcon, noResultsIcon, emptyStateComponent, noResultsComponent, ...htmlAttributes }: ItemPickerListProps, forwardedRef: ItemPickerListRef) => React.JSX.Element; type ItemPickerListType = (p: ItemPickerListProps & { ref?: ItemPickerListRef; }) => ReturnType; export declare const ItemPickerList: ItemPickerListType; export {};