import { ParsedShortcut } from './types'; /** * Parse a shortcut string into chord or sequence structure. * `mod+k` → chord; `g i` → sequence of two single-key chords. */ export declare function parseShortcutString(keys: string): ParsedShortcut; /** * Normalize shortcut string for blacklist / dedup / comparison. * Parses, sorts modifiers alphabetically, and reconstructs. */ export declare function normalizeShortcutString(keys: string): string; //# sourceMappingURL=parse.d.ts.map