import type { Option, OptionType, SelectStates } from './select.types'; import type { SelectV2Props } from './token'; import type { SelectV2EmitFn } from './defaults'; import type { TooltipInstance } from 'element-plus/es/components/tooltip'; import type { SelectDropdownInstance } from './select-dropdown'; declare const useSelect: (props: SelectV2Props, emit: SelectV2EmitFn) => { inputId: import("vue").Ref; collapseTagSize: import("vue").ComputedRef<"default" | "small">; currentPlaceholder: import("vue").ComputedRef; expanded: import("vue").Ref; emptyText: import("vue").ComputedRef; popupHeight: import("vue").ComputedRef; debounce: import("vue").ComputedRef<0 | 300>; allOptions: import("vue").ComputedRef; filteredOptions: import("vue").Ref<({ [x: string]: any; } | { [x: string]: any; created?: boolean | undefined; })[]>; iconComponent: import("vue").ComputedRef (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined>; iconReverse: import("vue").ComputedRef; tagStyle: import("vue").ComputedRef<{ maxWidth: string; }>; collapseTagStyle: import("vue").ComputedRef<{ maxWidth: string; }>; popperSize: import("vue").Ref; dropdownMenuVisible: import("vue").WritableComputedRef; hasModelValue: import("vue").ComputedRef; shouldShowPlaceholder: import("vue").ComputedRef; selectDisabled: import("vue").ComputedRef; selectSize: import("vue").ComputedRef<"" | "small" | "default" | "large">; needStatusIcon: import("vue").ComputedRef; showClearBtn: import("vue").ComputedRef; states: SelectStates; isFocused: import("vue").Ref; nsSelect: { namespace: import("vue").ComputedRef; b: (blockSuffix?: string) => string; e: (element?: string) => string; m: (modifier?: string) => string; be: (blockSuffix?: string, element?: string) => string; em: (element?: string, modifier?: string) => string; bm: (blockSuffix?: string, modifier?: string) => string; bem: (blockSuffix?: string, element?: string, modifier?: string) => string; is: { (name: string, state: boolean | undefined): string; (name: string): string; }; cssVar: (object: Record) => Record; cssVarName: (name: string) => string; cssVarBlock: (object: Record) => Record; cssVarBlockName: (name: string) => string; }; nsInput: { namespace: import("vue").ComputedRef; b: (blockSuffix?: string) => string; e: (element?: string) => string; m: (modifier?: string) => string; be: (blockSuffix?: string, element?: string) => string; em: (element?: string, modifier?: string) => string; bm: (blockSuffix?: string, modifier?: string) => string; bem: (blockSuffix?: string, element?: string, modifier?: string) => string; is: { (name: string, state: boolean | undefined): string; (name: string): string; }; cssVar: (object: Record) => Record; cssVarName: (name: string) => string; cssVarBlock: (object: Record) => Record; cssVarBlockName: (name: string) => string; }; inputRef: import("vue").Ref; menuRef: import("vue").Ref; tagMenuRef: import("vue").Ref; tooltipRef: import("vue").Ref; tagTooltipRef: import("vue").Ref; selectRef: import("vue").Ref; wrapperRef: import("vue").ShallowRef; selectionRef: import("vue").Ref; prefixRef: import("vue").Ref; suffixRef: import("vue").Ref; collapseItemRef: import("vue").Ref; popperRef: import("vue").ComputedRef; validateState: import("vue").ComputedRef<"" | "error" | "success" | "validating">; validateIcon: import("vue").ComputedRef; showTagList: import("vue").ComputedRef; collapseTagList: import("vue").ComputedRef; debouncedOnInputChange: import("lodash").DebouncedFunc<() => void>; deleteTag: (event: MouseEvent, option: Option) => void; getLabel: (option: Option) => any; getValue: (option: Option) => any; getDisabled: (option: Option) => any; getValueKey: (item: unknown) => any; handleClear: () => void; handleClickOutside: (event: Event) => void; handleDel: (e: KeyboardEvent) => void; handleEsc: () => void; focus: () => void; blur: () => void; handleMenuEnter: () => Promise; handleResize: () => void; resetSelectionWidth: () => void; updateTooltip: () => void; updateTagTooltip: () => void; updateOptions: () => void; toggleMenu: () => void; scrollTo: (index: number) => void; onInput: (event: Event) => void; onKeyboardNavigate: (direction: "forward" | "backward", hoveringIndex?: number | undefined) => void; onKeyboardSelect: () => void; onSelect: (option: Option) => void; onHover: (idx?: number) => void; handleCompositionStart: (event: CompositionEvent) => void; handleCompositionEnd: (event: CompositionEvent) => void; handleCompositionUpdate: (event: CompositionEvent) => void; }; export default useSelect;