import { Key } from 'term-strings/parse'; declare class KeySequenceEntry { static parse(string: string): KeySequenceEntry; shift: boolean; alt: boolean; ctrl: boolean; meta: boolean; key: string | null; check(key: Key): boolean; } export declare class KeySequence { descriptor: string; keyBuffer: Array; entries: Array; constructor(descriptor: string); add(key: Key): boolean; } export {};