import type { DefineComponent } from "vue"; /** Tree component props */ export interface TreeProps { data?: any[]; selectedKeys?: any[]; expandedKeys?: any[]; checkedKeys?: any[]; directory?: boolean; expandAll?: boolean; checkable?: boolean; draggable?: boolean; showLine?: boolean; /** default: true */ showIcon?: boolean; /** default: false */ showExtra?: boolean; /** default: false */ multiple?: boolean; checkStrictly?: boolean; selectAsCheck?: boolean; queryKey?: string; } /** Tree Vue 3 component */ declare const Tree: DefineComponent; export default Tree;