import type { Locator } from '@playwright/test'; import type { Selector } from '../types/internal'; type Options = Parameters[1]; /** * Types the specified text into an input element. */ export declare const typeText: (selector: Selector, text: string, options?: Options) => Promise; export {};