interface HotkeyOptions { ctrl?: boolean; shift?: boolean; alt?: boolean; meta?: boolean; } export declare function useHotkey(code: string, callback: () => void, options?: HotkeyOptions): void; export {};