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