import type { Ref } from 'vue'; import type { DefaultRow } from '../table/defaults'; import type { WatcherPropsData } from '.'; declare function useCurrent(watcherData: WatcherPropsData): { setCurrentRowKey: (key: string) => void; restoreCurrentRowKey: () => void; setCurrentRowByKey: (key: string) => void; updateCurrentRow: (_currentRow: T) => void; updateCurrentRowData: () => void; states: { _currentRowKey: Ref; currentRow: Ref; }; }; export default useCurrent;