You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
402 B
9 lines
402 B
import * as React from 'react';
|
|
import type { RefOptionListProps } from 'rc-select/lib/OptionList';
|
|
import type { ScrollTo } from 'rc-tree/lib/interface';
|
|
declare type ReviseRefOptionListProps = Omit<RefOptionListProps, 'scrollTo'> & {
|
|
scrollTo: ScrollTo;
|
|
};
|
|
declare const RefOptionList: React.ForwardRefExoticComponent<React.RefAttributes<ReviseRefOptionListProps>>;
|
|
export default RefOptionList;
|