import type { OptionProps, SelectProps } from './defaults'; import type { ExtractPropTypes, InjectionKey, Ref } from 'vue'; import type { Option } from './select.types'; import type { TooltipInstance } from 'element-plus/es/components/tooltip'; export interface SelectV2Context { props: ExtractPropTypes; expanded: boolean; tooltipRef: Ref; onSelect: (option: Option) => void; onHover: (idx: number) => void; onKeyboardNavigate: (direction: 'forward' | 'backward') => void; onKeyboardSelect: () => void; } export declare const selectV2InjectionKey: InjectionKey; export declare type IOptionV2Props = ExtractPropTypes; export declare type ISelectV2Props = ExtractPropTypes;