/*! * devextreme-react * Version: 25.2.7 * Build date: Tue May 05 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/DevExtreme */ import * as React from "react"; import { Ref, ReactElement } from "react"; import dxScrollView, { Properties } from "devextreme/ui/scroll_view"; import { IHtmlOptions } from "./core/component"; import type { DisposingEvent, InitializedEvent, PullDownEvent, ReachBottomEvent, ScrollEvent, UpdatedEvent } from "devextreme/ui/scroll_view"; type ReplaceFieldTypes = { [P in keyof TSource]: P extends keyof TReplacement ? TReplacement[P] : TSource[P]; }; type IScrollViewOptionsNarrowedEvents = { onDisposing?: ((e: DisposingEvent) => void); onInitialized?: ((e: InitializedEvent) => void); onPullDown?: ((e: PullDownEvent) => void); onReachBottom?: ((e: ReachBottomEvent) => void); onScroll?: ((e: ScrollEvent) => void); onUpdated?: ((e: UpdatedEvent) => void); }; type IScrollViewOptions = React.PropsWithChildren & IHtmlOptions>; interface ScrollViewRef { instance: () => dxScrollView; } declare const ScrollView: (props: React.PropsWithChildren & { ref?: Ref; }) => ReactElement | null; export default ScrollView; export { ScrollView, IScrollViewOptions, ScrollViewRef }; import type * as ScrollViewTypes from 'devextreme/ui/scroll_view_types'; export { ScrollViewTypes };