import type { Table as TanStackTable } from '@tanstack/react-table'; /** * Smooth-scrolls the table to the top when sorting changes. * Prevents the jarring jump that occurs when the virtualizer * recalculates row positions after a sort. */ export declare const useSmoothScrollOnSort: (table: TanStackTable, getScrollTarget: () => HTMLElement | Window | null) => void;