export declare function pressKey(args: Record): string; export declare function pressModifiers(args: Record): { metaKey: boolean; ctrlKey: boolean; shiftKey: boolean; altKey: boolean; }; export declare function pressCode(args: Record, key: string): string; export declare function focusedOrDocument(): HTMLElement; export declare function isReflessDocumentPress(ref: string, action: string, args: Record): boolean; export declare function pressKeys(args: Record): string[]; export declare function holdKey(el: HTMLElement, key: string, code: string, mods: Record, ms: number): Promise; export declare function pressCombo(el: HTMLElement, keys: readonly string[], mods: Record, holdMs: number): Promise; export declare const ZOOM_NEEDS_REAL_BROWSER_MSG: string;