import type { IUseTreeProps } from '@duxweb/dvha-core'; import type { TreeProps } from 'naive-ui'; export interface DuxTreeProps extends TreeProps { path?: string; params?: Record; height?: string; value?: Array | null; defaultValue?: Array | null; hookProps?: IUseTreeProps; onUpdateValue?: (value: valueKey[]) => void; } type valueKey = string | number; export declare const DuxTree: import("vue").DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; export {};