import type { useBaseProps } from '@rc-component/select'; import * as React from 'react'; export interface RefOptionListProps { onKeyDown: React.KeyboardEventHandler; onKeyUp: React.KeyboardEventHandler; } export type RawOptionListProps = Pick, 'prefixCls' | 'multiple' | 'searchValue' | 'toggleOpen' | 'notFoundContent' | 'direction' | 'open' | 'disabled'> & { lockOptions?: boolean; }; declare const RawOptionList: React.ForwardRefExoticComponent & { lockOptions?: boolean | undefined; } & React.RefAttributes>; export default RawOptionList;