import { TypeSetupContext } from '../utils/adapt';
import { TreeProps, TypeTreeState } from '../types';
export default function useTreeState(props: TreeProps, context: TypeSetupContext): {
    state: TypeTreeState;
};
