export declare class Key { shift: boolean; alt: boolean; ctrl: boolean; meta: boolean; name: string; constructor(); } export declare function parseKeys(string: any): any; export declare function parseKey(string: any): Key;