UNPKG

473 BTypeScriptView Raw
1import type { DefaultOptionType, InternalFieldName, OnInternalSelect } from './TreeSelect';
2export interface TreeSelectContextProps {
3 virtual?: boolean;
4 listHeight: number;
5 listItemHeight: number;
6 treeData: DefaultOptionType[];
7 fieldNames: InternalFieldName;
8 onSelect: OnInternalSelect;
9}
10export declare function useProvideSelectContext(props: TreeSelectContextProps): void;
11export default function useInjectSelectContext(): TreeSelectContextProps;