type __VLS_Props = { /** * Selected element, it can be an object or a string, related to itemData props */ modelValue?: null | unknown; /** * You need to pass an array of objects that will be displayed in the tree */ data: unknown[]; /** * You can pass the name of the property that will be used as the label of the selected item */ itemLabel?: string; /** * You can pass the name of the property that will be used as the value of the selected item */ itemData?: string; /** * Select mode for display tree data * @example 'tree', 'list' */ mode?: string; /** * You can pass the name of the property that will be used for getting children elements */ childrenProp?: string; multiple?: boolean; allowParent?: boolean; }; declare var __VLS_10: any; type __VLS_Slots = {} & { 'item-prefix'?: (props: typeof __VLS_10) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { select: (data: unknown) => any; "update:modelValue": (value: unknown) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onSelect?: (data: unknown) => any; "onUpdate:modelValue"?: (value: unknown) => any; }>, { mode: string; childrenProp: string; allowParent: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };