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