import type { Option } from 'jamis-core'; import type { BaseSelectionProps } from '../types'; import { BaseSelection } from './Selection'; export interface TreeSelectionProps extends BaseSelectionProps { expand?: 'all' | 'first' | 'root' | 'none'; } interface TreeSelectionState { expanded: Array; } /** * 树形选择框组件 */ export declare class TreeSelection extends BaseSelection { valueArray: Array