import type { Ref } from 'vue'; import type { Control } from '../types'; export default function useEvent(tmpForm: Ref>, emits: any): { onFormItemChange: (e: any, item: Control, selectedOptions?: any[] | undefined) => void; onFormItemClick: (e: any, item: Control) => void; onFormItemBlur: (e: any, item: Control) => void; onFormItemPressEnter: (e: any, item: Control) => void; onFormItemKeyup: (e: any, item: Control) => void; onFormItemFocus: (e: any, item: Control) => void; };