import type { ExecutionResult } from "./types.js"; export type KeyboardState = { visible: boolean; height: number | null; screenY: number | null; width: number | null; error?: string; }; export type KeyboardExecuteFn = (expression: string, device?: string) => Promise; export declare function readKeyboardState(device?: string, execute?: KeyboardExecuteFn): Promise; //# sourceMappingURL=keyboardMetrics.d.ts.map