import React from 'react'; import type { GridRowId } from '../../types'; type ScrollBoundsType = { /** margin above scroll items (e.g. header rows) */ head: number; /** margin below scroll items (e.g. footer) */ tail: number; }; export declare const useScrollSync: (ref: React.RefObject, bounds?: Partial) => void; export declare const useHoverSync: (rowId: GridRowId) => { isHovered: boolean; onMouseEnter: () => void; onMouseLeave: () => void; }; export {}; //# sourceMappingURL=hook.d.ts.map