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