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