interface UseActiveRowHighlightParams { highlightActiveRow?: number; onHighlightActiveRowChange?: (row: number | undefined) => void; isHighlightActiveRowControlled?: boolean; } export declare function useActiveRowHighlight({ highlightActiveRow, onHighlightActiveRowChange, isHighlightActiveRowControlled, }: UseActiveRowHighlightParams): { activeRow: number | undefined; commitActiveRow: (value: number | undefined) => void; }; export {};