import type { Ref } from 'vue'; import type { WatcherPropsData } from './index'; 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: any; }; }; export default useCurrent;