import * as React from 'react'; import type { Layout, ScrollState } from '../scroll_window'; type ScrollWindowProps = { layout: L innerRef?(el: HTMLElement | null): void doNotUseForceLTRForPageNavigator?: boolean children( opts: { scrollableRef(el: HTMLElement | null): void scrollState: Readonly> } ): React.ReactNode }; export declare function ScrollWindow(props: ScrollWindowProps): React.ReactNode; type OptionalScrollWindowProps = { layout: L enabled: boolean innerRef?(el: HTMLElement | null): void children( opts: { scrollableRef?(el: HTMLElement | null): void scrollState?: Readonly>; } ): React.ReactNode }; export declare function OptionalScrollWindow(props: OptionalScrollWindowProps): React.ReactNode; export {};