import type { ActionContext, ActionId } from "./action-id.js"; import { type KeyBinding } from "./keymap.js"; export declare class ActionRouter { private readonly byContext; constructor(bindings?: readonly KeyBinding[]); resolve(chord: string, context: ActionContext): ActionId | undefined; chordsFor(action: ActionId): string[]; }