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<string>;
        currentRow: any;
    };
};
export default useCurrent;
