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<void>) & ((this: void, key: KeyboardPressKey, options?: Options) => Promise<void>);
/**
 * Presses the specified keyboard keys.
 */
export declare const pressKey: PressKey;
export {};
