/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; declare const InovuaNativeScrollContainer: { new (props: any): { ensureNonStaticStyle(style: any, domNode: any): any; componentDidMount(): void; componentDidUpdate(prevProps: any): void; onResize: (...args: any[]) => void; sync: () => void; readonly clientSize: any; readonly scrollTopMax: any; readonly scrollLeftMax: any; scrollTop: any; scrollLeft: any; smoothScrollTo: (newValue: any, config: any, callback: any) => void; getScrollbars: () => { horizontal: any; vertical: any; }; hasScrollbar: (orientation: any) => any; hasVerticalScrollbar: () => any; hasHorizontalScrollbar: () => any; focus: () => void; onFocus: (event: any) => void; onChildResize: (scrollSize: any) => void; getScrollPosition: () => any; updateScrollStyle: (scrollPos: any) => void; onNotifyResizeMount: () => void; render(): JSX.Element; getBefore: () => React.DetailedReactHTMLElement<{ key: string; style: any; children: JSX.Element; }, HTMLElement> | null; getAfter: () => React.DetailedReactHTMLElement<{ key: string; style: any; children: JSX.Element; }, HTMLElement> | null; getBeforeHeight: () => any; getAfterHeight: () => any; onBeforeElementResize: (size: any) => void; onAfterElementResize: (size: any) => void; scrollIntoView: ({ target }: { target: any; }) => void; onScrollIntent: () => void; lazyRestorePointerEvents: () => void; onWheelEvent: (event: any) => void; clear: () => void; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly<{}>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly<{}> & Readonly<{ children?: React.ReactNode; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; shouldComponentUpdate?(nextProps: Readonly<{}>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly<{}>, prevState: Readonly<{}>): any; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly<{}>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly<{}>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly<{}>, nextState: Readonly<{}>, nextContext: any): void; }; contextType?: React.Context | undefined; }; export default InovuaNativeScrollContainer;