import { BaseProps } from '../base'; import { ScrollIntoViewOptions } from '../utils'; export interface ScrollViewProps extends BaseProps { contextId?: string; scrollX?: boolean; scrollY?: boolean; showScrollbar?: boolean; onScroll?: (event: { x: number; y: number; }) => void; scrollLeft?: number; scrollTop?: number; } export interface ScrollViewRef { scrollTop: (top: number) => void; scrollLeft: (left: number) => void; setScrollEnabled: (scrollEnabled: boolean) => void; getElement: () => any; scrollIntoView: (selector: string, object?: ScrollIntoViewOptions) => void; } export declare const ScrollView: import("react").ForwardRefExoticComponent>; export default ScrollView;