import React from 'react'; interface scrollProps { scrollHeight: number; scrollWidth: number | string; height?: number | string; children: React.ReactNode; keepScrollTop?: boolean; wrapperRef?: React.RefObject; onScroll?: (info: { scrollLeft: number; scrollTop: number; x: number; y: number; fromDrag: boolean; height: number; width: number; }) => void; onScrollToBottom?: (options?: any) => void; className?: string; style?: React.CSSProperties; childrenStyle?: React.CSSProperties; scrollerStyle?: React.CSSProperties; onMouseMove?: () => void; defaultHeight?: number; isScrollY?: boolean; } declare const Scroll: (props: scrollProps) => import("react/jsx-runtime").JSX.Element; export default Scroll; //# sourceMappingURL=scroll.d.ts.map