import * as React from 'react'; export interface IProps { positionCache: React.MutableRefObject; heightCache: React.MutableRefObject; lastRowPosition: React.MutableRefObject; tableRef: any; clearAfter: (row: number) => void; reRender: () => void; } declare const useActions: ({ positionCache, tableRef, clearAfter, reRender, }: IProps) => { scrollToRow: (row: number) => void; clear: (index: number) => void; getRowPosition: (row: number) => number; }; export default useActions;