import type { ComputedRef } from 'vue'; import type { VxeGridDefines } from 'vxe-table'; import type { TableProGridEmit, TableProProps } from '../types'; export declare function useCellHover(tablePropsRef: ComputedRef, emit: TableProGridEmit): { onCellMouseenter: (params: VxeGridDefines.CellMouseenterEventParams) => void; onCellMouseleave: (params?: VxeGridDefines.CellMouseleaveEventParams | undefined) => void; instances: Map; };