import type { ExtractPropTypes } from "vue"; export declare const editBarProps: { /** 是否可排序 */ readonly sortable: BooleanConstructor; /** 默认数据 */ readonly data: PropType; /** 值的标识 */ readonly valueKey: { readonly type: StringConstructor; readonly default: "value"; }; /** 标签的标识 */ readonly labelKey: { readonly type: StringConstructor; readonly default: "label"; }; /** 子节点属性标识 */ readonly childrenKey: { readonly type: StringConstructor; readonly default: "children"; }; readonly modelValue: { readonly type: PropType; }; /** 默认选中 */ readonly defaultSelect: { readonly type: BooleanConstructor; readonly default: true; }; /** 树形列表显示 */ readonly tree: { readonly type: BooleanConstructor; readonly default: false; }; readonly title: { readonly type: StringConstructor; readonly default: "分类"; }; }; export type EditBarProps = ExtractPropTypes;