dcf7e721d8003c788ded40cee9ca51efb92e8a1c859b979b1d7e5b372419154c44f4df43a5dcd0b70a8ae2338ea38e72269cfff755af9fe0ba26e772696ba6 438 B

123456789101112
  1. import type { Ref } from 'vue';
  2. import type { SelectInstance } from 'element-plus/es/components/select';
  3. import type { TreeInstance } from 'element-plus/es/components/tree';
  4. export declare const useTree: (props: any, { attrs, slots, emit }: {
  5. attrs: any;
  6. slots: any;
  7. emit: any;
  8. }, { select, tree, key, }: {
  9. select: Ref<SelectInstance | undefined>;
  10. tree: Ref<TreeInstance | undefined>;
  11. key: Ref<string>;
  12. }) => any;