import type { useBaseProps } from 'rc-select'; import type { RefOptionListProps } from 'rc-select/lib/OptionList'; import * as React from 'react'; export type RawOptionListProps = Pick, 'prefixCls' | 'multiple' | 'searchValue' | 'toggleOpen' | 'notFoundContent' | 'direction' | 'open' | 'disabled'>; declare const RawOptionList: React.ForwardRefExoticComponent>; export default RawOptionList;