import { SHORTCUTS, KEY_MODIFIERS } from '../../enumerations';
import { ShortcutNames } from '../../interfaces';
export declare const shortcutsNames: ShortcutNames;
export declare const defaultShortcuts: ({
    type: SHORTCUTS;
    key: string;
    modifier?: undefined;
} | {
    type: SHORTCUTS;
    key: string;
    modifier: KEY_MODIFIERS;
} | {
    type: SHORTCUTS;
    key: string;
    modifier: KEY_MODIFIERS[];
})[];
