import { ReactNode, HTMLAttributes } from '../../react/adapter.ts'; import { PageLayout } from '../../index.ts'; type ScrollerProps = HTMLAttributes & { documentId: string; renderPage: (props: PageLayout) => ReactNode; }; export declare function Scroller({ documentId, renderPage, ...props }: ScrollerProps): import("react/jsx-runtime").JSX.Element | null; export {};