import type { WatcherPropsData } from './index'; declare function useCurrent(watcherData: WatcherPropsData): { updateCurrentRowData: () => void; updateCurrentRow: (_currentRow: any) => void; setCurrentRowKey: (key: string) => void; states: { _currentRowKey: import("vue").Ref; currentRow: any; }; }; export default useCurrent;