import { Ref } from '@vue/composition-api'; import { BaseTableProps } from '../interface'; import type { RowEventContext, TableRowData } from '../type'; export declare function useRowHighlight(props: BaseTableProps, tableRef: Ref): { tActiveRow: Ref<(string | number)[]>; onHighlightRow: (ctx: RowEventContext, extra?: { action?: 'active' | 'inactive'; }) => void; addHighlightKeyboardListener: () => void; removeHighlightKeyboardListener: () => void; }; export default useRowHighlight;