import { Rect } from '../types';
/**
 * Gets the entire size of the scrollable document area, even extending outside
 * of the `<html>` and `<body>` rect bounds if horizontally scrollable.
 */
export declare const getDocumentRect: (element: HTMLElement) => Rect;
