import { WatcherPropsData } from "./index.js"; import { DefaultRow } from "../table/defaults.js"; import { Ref } from "vue"; //#region ../../packages/components/table/src/store/current.d.ts 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; }; }; //#endregion export { useCurrent as default };