import { CSSProperties } from 'vue'; import { CompSize, IconType } from '../../utils'; export interface TreeSelectProps { name?: string; icon?: IconType; size?: CompSize; expandIcon?: IconType; collapseIcon?: IconType; debounce?: number; className?: string | ((nodeItem: any) => string); nodeStyle?: CSSProperties | ((nodeItem: any) => CSSProperties); useFolderIcon?: boolean; }