import type { CDPClientInterface } from "./cdp-types.js"; /** * Keyboard payload builder for CDP Input.dispatchKeyEvent. Map ripped out of * BrowserClient.pressKey so it can be unit-tested and shared without dragging * the whole client in. */ export interface KeyDef { key: string; code: string; keyCode: number; text?: string; } export declare const KEY_MAP: Record; export declare function pressKeyOnCdp(cdp: CDPClientInterface, key: string): Promise; export declare function formatEvaluateResult(value: unknown): string; //# sourceMappingURL=key-map.d.ts.map