import type { MutableRefObject } from 'react'; import type { IActiveCellBound } from './interface'; export interface CellScrollerProps { containerRef: MutableRefObject; style?: React.CSSProperties; scrollEnable?: boolean; activeCellBound: IActiveCellBound; setCellScrollTop: React.Dispatch>; } export interface CellScrollerRef { reset: () => void; } export declare const CellScroller: import("react").ForwardRefExoticComponent>;