import { Ref } from 'vue'; import { 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: Ref; }; }; export default useCurrent;