import type { ComputedRef } from 'vue'; import type { TableColumnCtx } from './defaults'; declare function useWatcher(owner: ComputedRef, props_: Partial>): { registerComplexWatchers: () => void; registerNormalWatchers: () => void; }; export default useWatcher;