import type { PropType } from 'vue'; declare type valueType = string | number | boolean; interface OptionType { name: string; value: valueType; disabled: boolean; } declare const _default: import("vue").DefineComponent<{ options: { type: PropType; required: true; }; modelValue: { type: (ArrayConstructor | StringConstructor | NumberConstructor | BooleanConstructor)[]; default: string; }; expandable: { type: BooleanConstructor; default: boolean; }; collapseText: { type: StringConstructor; default: string; }; expandText: { type: StringConstructor; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; checkAll: { type: BooleanConstructor; default: boolean; }; checkAllText: { type: StringConstructor; default: string; }; }, { multiple: import("vue").ComputedRef; handleCheck: (item: OptionType) => void; expand: import("vue").Ref; handleToggleExpand: () => void; foldable: import("vue").Ref; optionsEle: import("vue").Ref; handleCheckAll: () => void; checkedAll: import("vue").ComputedRef; containerEle: import("vue").Ref; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{ options: OptionType[]; modelValue: string | number | boolean | unknown[]; expandable: boolean; collapseText: string; expandText: string; disabled: boolean; checkAll: boolean; checkAllText: string; } & {}>, { modelValue: string | number | boolean | unknown[]; expandable: boolean; collapseText: string; expandText: string; disabled: boolean; checkAll: boolean; checkAllText: string; }>; export default _default;