import { Selector } from '../utils/selectors'; type Scroll = ((posX: number, posY: number) => Promise) & ((position: ScrollPosition) => Promise) & ((selector: Selector, scrollLeft: number, scrollTop: number) => Promise) & ((selector: Selector, position: ScrollPosition) => Promise); type ScrollPosition = 'bottom' | 'bottomLeft' | 'bottomRight' | 'center' | 'left' | 'right' | 'top' | 'topLeft' | 'topRight'; /** * Scrolls the document (or element) to the specified absolute position. */ export declare const scroll: Scroll; export {};