import { FSMImpl } from "../../fsm/FSMImpl"; import { InteractionBase } from "../InteractionBase"; import { KeyDataImpl } from "../KeyDataImpl"; import type { KeyData } from "../../../api/interaction/KeyData"; import type { Logger } from "../../../api/logging/Logger"; export declare class KeyTypedFSM extends FSMImpl { private checkKey; constructor(logger: Logger, action: (event: KeyboardEvent) => void, key?: string); reinit(): void; } export declare class KeyTyped extends InteractionBase { constructor(logger: Logger, key?: string, name?: string); }