import type { ComputedRef } from 'vue'; import type { TableColumnCtx } from './defaults'; import type { Table } from '../table/defaults'; declare function useWatcher(parentDom: ComputedRef, _props: TableColumnCtx): { registerNormalWatchers: () => void; registerComplexWatchers: () => void; }; export default useWatcher;