import type { KeyboardPressKey, Selector } from '../types/internal'; type Options = Readonly<{ delay?: number; timeout?: number; }>; type PressKey = ((this: void, selector: Selector, key: KeyboardPressKey, options?: Options) => Promise) & ((this: void, key: KeyboardPressKey, options?: Options) => Promise); /** * Presses the specified keyboard keys. */ export declare const pressKey: PressKey; export {};