List.d.ts 486 B

123456
  1. import type { useBaseProps } from 'rc-select';
  2. import type { RefOptionListProps } from 'rc-select/lib/OptionList';
  3. import * as React from 'react';
  4. export type RawOptionListProps = Pick<ReturnType<typeof useBaseProps>, 'prefixCls' | 'multiple' | 'searchValue' | 'toggleOpen' | 'notFoundContent' | 'direction' | 'open' | 'disabled'>;
  5. declare const RawOptionList: React.ForwardRefExoticComponent<RawOptionListProps & React.RefAttributes<RefOptionListProps>>;
  6. export default RawOptionList;