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