export declare type Action = string | string[]; export declare type ActionGroup = { windows?: Action; osx?: Action; linux?: Action; other?: Action; }; export declare type Keymap = { [namespace: string]: { [action: string]: ActionGroup | Action; }; };