export interface KeyEventLike { readonly name: string; readonly ctrl?: boolean; readonly shift?: boolean; readonly meta?: boolean; readonly option?: boolean; readonly super?: boolean; readonly sequence?: string | undefined; } declare const MODIFIER_ORDER: readonly ["ctrl", "alt", "shift", "meta", "super"]; export type Modifier = (typeof MODIFIER_ORDER)[number]; export declare function normalizeChord(chord: string): string; export declare function chordFrom(modifiers: { readonly ctrl?: boolean | undefined; readonly alt?: boolean | undefined; readonly shift?: boolean | undefined; readonly meta?: boolean | undefined; readonly super?: boolean | undefined; }, key: string): string; export {};