interface UseGlobalShortcutProps { onOpen: () => void; onClose: () => void; isVisible: boolean; showCitadelKey: string; closeOnEscape: boolean; } export declare const useGlobalShortcut: ({ onOpen, onClose, isVisible, showCitadelKey, closeOnEscape }: UseGlobalShortcutProps) => void; export {};