///
import { BaseSelection, BaseSelectionProps } from './Selection';
import React from 'react';
import { Option } from './Select';
import { SpinnerExtraProps } from './Spinner';
export interface TreeSelectionProps extends BaseSelectionProps, SpinnerExtraProps {
expand?: 'all' | 'first' | 'root' | 'none';
}
export interface TreeSelectionState {
expanded: Array;
}
export declare class TreeSelection extends BaseSelection {
valueArray: Array