import { Ref } from '@vue/composition-api'; import { BaseTableProps } from '../interface'; export declare function useHoverKeyboardEvent(props: BaseTableProps, tableRef: Ref): { hoverRow: Ref; needKeyboardRowHover: import("@vue/composition-api").ComputedRef; clearHoverRow: () => void; addRowHoverKeyboardListener: () => void; removeRowHoverKeyboardListener: () => void; tableRefTabIndex: Ref; }; export default useHoverKeyboardEvent;