import type { Selector } from '../../types/internal';
/**
 * Returns `true`, if the selector is entirely in the viewport
 * (all selector points are in the viewport), and `false` otherwise.
 */
export declare const isSelectorEntirelyInViewport: (selector: Selector) => Promise<boolean>;
