import { type RefObject } from 'react'; import type { WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface ScrollProviderProps extends WithChildren { /** reference to the scrollable container that this context should provide information about. * @defaultValue window * */ containerRef?: RefObject; } /** * ScrollProvider component that provides scroll information context to it's children * @public */ export declare const ScrollProvider: { (props: ScrollProviderProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };