import * as React from 'react'; import type { Layout, ScrollState } from '../scroll_window'; type GlobalScrollWindowProps = { layout: L children( opts: { scrollState: Readonly>; } ): React.ReactNode }; export declare function GlobalScrollWindow(props: GlobalScrollWindowProps): React.ReactNode; type OptionalGlobalScrollWindowProps = { layout: L enabled: boolean children( opts: { scrollState?: Readonly>; } ): React.ReactNode }; export declare function OptionalGlobalScrollWindow(props: OptionalGlobalScrollWindowProps): React.ReactNode; export {};