import type { RootState } from '../store'; export interface Shortcut { hotKey: string[] | string; title: string; isGlobal: boolean; action: () => void; } export type ShortcutState = Set; export declare const reducer: import("redux").Reducer, addShortcut: import("@reduxjs/toolkit").ActionCreatorWithPayload, removeShortcut: import("@reduxjs/toolkit").ActionCreatorWithPayload; export declare const globalShortcuts: (state: RootState) => Shortcut[]; export declare const localShortcuts: (state: RootState) => Shortcut[]; //# sourceMappingURL=shortcutSlice.d.ts.map