import { RefObject } from 'react'; export declare const defaultProps: Readonly<{ startIx: number; scrollTop: number; scrollLeft: number; }>; export declare type UxGridFrameScrollPosition = { scrollTop: number; scrollLeft: number; }; export declare type UxGridFrameScrollState = { scrollHeight: number; scrollWidth: number; offsetHeight: number; offsetWidth: number; scrollRef: RefObject; scrollTo(props: Partial): void; } & UxGridFrameScrollPosition; export declare type UxGridFrameState = { shouldScroll: boolean; } & Pick>; export declare type UxGridFrameProps = {} & typeof defaultProps;