/// import { useTree } from '@sheinx/hooks'; import { TreeProps, TreeSemanticKey } from './tree.type'; import type { SemanticClassFn, SemanticStyleFn } from '../common/use-semantic'; export type CheckedStatusType = 0 | 1 | 2; export type TreeContextProps = ReturnType>['datum'] & Pick, 'size' | 'leafIcon'> & { semClass?: SemanticClassFn; semStyle?: SemanticStyleFn; }; export interface TreeProviderProps { children: React.ReactNode; value: TreeContextProps; } //# sourceMappingURL=tree-context.type.d.ts.map