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