declare const useShortcutKey: (major: "alt" | "ctrl" | "meta" | "shift", { shortcuts, namespace, }: { shortcuts: [string[], (e: KeyboardEvent) => void][]; namespace?: string; }) => void; export default useShortcutKey;