import type { Locator } from '@playwright/test'; import type { Selector } from '../types/internal'; type Options = Parameters[0]; /** * Scrolls the specified element into view. */ export declare const scrollIntoView: (selector: Selector, options?: Options) => Promise; export {};