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