export declare const nonAlphanumericKeys: string[]; export type KeyEventType = "press" | "repeat" | "release"; export interface ParsedKey { baseCode?: number; capsLock?: boolean; code?: string; ctrl: boolean; eventType: KeyEventType; hyper?: boolean; meta: boolean; name: string; number: boolean; numLock?: boolean; option: boolean; raw: string; repeated?: boolean; sequence: string; shift: boolean; source: "raw" | "kitty"; super?: boolean; } export type ParseKeypressOptions = { useKittyKeyboard?: boolean; }; export declare const parseKeypress: (s?: Buffer | string, options?: ParseKeypressOptions) => ParsedKey | null; //# sourceMappingURL=parse-keypress.d.ts.map