Files
video-gen/video-gen-admin/node_modules/@rc-component/tree-select/lib/OptionList.d.ts
T
2026-05-25 17:08:18 +08:00

9 lines
416 B
TypeScript

import type { RefOptionListProps } from '@rc-component/select/lib/OptionList';
import type { ScrollTo } from '@rc-component/tree/lib/interface';
import * as React from 'react';
type ReviseRefOptionListProps = Omit<RefOptionListProps, 'scrollTo'> & {
scrollTo: ScrollTo;
};
declare const RefOptionList: React.ForwardRefExoticComponent<React.RefAttributes<ReviseRefOptionListProps>>;
export default RefOptionList;