import type { BaseSelectProps, useBaseProps } from '@rc-component/select'; import * as React from 'react'; export type RefOptionListProps = NonNullable['ref']> extends React.Ref ? Ref : never; 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;