import { type pointerKey } from '.'; export declare class Device { private pressedKeys; get countPressed(): number; isPressed(keyDef: pointerKey): boolean; addPressed(keyDef: pointerKey): Set; removePressed(keyDef: pointerKey): boolean; }