import "./index.less"; import { TreeSelectSize } from "./interface"; export interface TreeSelectProps { data: any; modelValue: any; disabled?: boolean; placeholder?: string; multiple?: boolean; allowClear?: boolean; collapseTagsTooltip?: boolean; minCollapsedNum?: number; size?: TreeSelectSize; checkStrictly?: boolean; search?: boolean; } export interface TreeSelectEmits { (e: "update:modelValue", value: string | string[]): void; (e: "change", value: string | string[]): void; (e: "search", value: string | string[]): void; } declare const _default: { new (...args: any[]): { $: import("vue").ComponentInternalInstance; $data: {}; $props: Partial<{ search: boolean; disabled: boolean; multiple: boolean; size: TreeSelectSize; allowClear: boolean; minCollapsedNum: number; collapseTagsTooltip: boolean; checkStrictly: boolean; }> & Omit, { disabled: boolean; multiple: boolean; allowClear: boolean; checkStrictly: boolean; collapseTagsTooltip: boolean; minCollapsedNum: number; size: string; search: boolean; }>>> & { onChange?: ((value: string | string[]) => any) | undefined; "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined; onSearch?: ((value: string | string[]) => any) | undefined; } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "disabled" | "multiple" | "size" | "allowClear" | "minCollapsedNum" | "collapseTagsTooltip" | "checkStrictly">; $attrs: { [x: string]: unknown; }; $refs: { [x: string]: unknown; }; $slots: Readonly<{ [name: string]: import("vue").Slot | undefined; }>; $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase, {}> | null; $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase, {}> | null; $emit: ((event: "search", value: string | string[]) => void) & ((event: "change", value: string | string[]) => void) & ((event: "update:modelValue", value: string | string[]) => void); $el: any; $options: import("vue").ComponentOptionsBase, { disabled: boolean; multiple: boolean; allowClear: boolean; checkStrictly: boolean; collapseTagsTooltip: boolean; minCollapsedNum: number; size: string; search: boolean; }>>> & { onChange?: ((value: string | string[]) => any) | undefined; "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined; onSearch?: ((value: string | string[]) => any) | undefined; }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: string | string[]) => void; } & { change: (value: string | string[]) => void; } & { search: (value: string | string[]) => void; }, string, { search: boolean; disabled: boolean; multiple: boolean; size: TreeSelectSize; allowClear: boolean; minCollapsedNum: number; collapseTagsTooltip: boolean; checkStrictly: boolean; }, {}, string> & { beforeCreate?: ((() => void) | (() => void)[]) | undefined; created?: ((() => void) | (() => void)[]) | undefined; beforeMount?: ((() => void) | (() => void)[]) | undefined; mounted?: ((() => void) | (() => void)[]) | undefined; beforeUpdate?: ((() => void) | (() => void)[]) | undefined; updated?: ((() => void) | (() => void)[]) | undefined; activated?: ((() => void) | (() => void)[]) | undefined; deactivated?: ((() => void) | (() => void)[]) | undefined; beforeDestroy?: ((() => void) | (() => void)[]) | undefined; beforeUnmount?: ((() => void) | (() => void)[]) | undefined; destroyed?: ((() => void) | (() => void)[]) | undefined; unmounted?: ((() => void) | (() => void)[]) | undefined; renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined; renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined; errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase, {}> | null, info: string) => boolean | void)[]) | undefined; }; $forceUpdate: () => void; $nextTick: typeof import("vue").nextTick; $watch any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions | undefined): import("vue").WatchStopHandle; } & Readonly, { disabled: boolean; multiple: boolean; allowClear: boolean; checkStrictly: boolean; collapseTagsTooltip: boolean; minCollapsedNum: number; size: string; search: boolean; }>>> & { onChange?: ((value: string | string[]) => any) | undefined; "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined; onSearch?: ((value: string | string[]) => any) | undefined; } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {}; __isFragment?: undefined; __isTeleport?: undefined; __isSuspense?: undefined; } & import("vue").ComponentOptionsBase, { disabled: boolean; multiple: boolean; allowClear: boolean; checkStrictly: boolean; collapseTagsTooltip: boolean; minCollapsedNum: number; size: string; search: boolean; }>>> & { onChange?: ((value: string | string[]) => any) | undefined; "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined; onSearch?: ((value: string | string[]) => any) | undefined; }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: string | string[]) => void; } & { change: (value: string | string[]) => void; } & { search: (value: string | string[]) => void; }, string, { search: boolean; disabled: boolean; multiple: boolean; size: TreeSelectSize; allowClear: boolean; minCollapsedNum: number; collapseTagsTooltip: boolean; checkStrictly: boolean; }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps; export default _default; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? P[K] & { default: D[K]; } : P[K]; };