import { ComponentInternalInstance, ComputedRef, Ref } from 'vue'; export declare type Nullable = null | T; export interface IElDropdownInstance { instance?: ComponentInternalInstance; dropdownSize?: ComputedRef; visible?: Ref; handleClick?: () => void; commandHandler?: (...arg: any[]) => void; show?: () => void; hide?: () => void; trigger?: ComputedRef; hideOnClick?: ComputedRef; triggerElm?: ComputedRef>; }