import { ShortcutScope } from "./types"; interface UseShortcutOptions { description: string; scope?: ShortcutScope; category?: string; preventDefault?: boolean; enabled?: boolean; keywords?: string[]; } export declare function useShortcut(keys: string | string[], action: (e?: KeyboardEvent) => void, options: UseShortcutOptions): void; export {}; //# sourceMappingURL=useShortcut.d.ts.map