import { WaitElementOptions } from './wait-element'; export interface WaitScrollOptions extends WaitElementOptions, ScrollIntoViewOptions { throwOnTimeout?: boolean; } export declare function waitScroll(selector: string, options?: WaitScrollOptions): Promise;