import { InjectionKey } from 'vue'; export interface DropdownContext { popupMaxHeight: boolean | number; onOptionClick: (value: string | number | Record | undefined, ev: Event) => void; } export declare const dropdownInjectionKey: InjectionKey;