import { Bindings, WatcherOptions, Status } from "./watcher-interfaces"; export declare class Watcher { private readonly eventTarget; private readonly bindings; readonly status: Status; constructor({ eventTarget, bindings }: WatcherOptions); private readonly listeners; start(): void; stop(): void; destructor(): void; private getInputByKeycode; private getAliasesForInput; }