import { KeyboardShortcut, UseShortcutHelpReturn } from './types'; /** * Hook for managing shortcut help dialog * * @example * ```tsx * const { isHelpVisible, showHelp, hideHelp, shortcuts } = useShortcutHelp( * allShortcuts, * { triggerKey: '?' } * ); * * return ( * <> * {isHelpVisible && ( * * )} * * ); * ``` */ export declare function useShortcutHelp(shortcuts: KeyboardShortcut[], options?: { /** Key to trigger help dialog (default: '?') */ triggerKey?: string; /** Whether to enable automatic help trigger */ autoTrigger?: boolean; }): UseShortcutHelpReturn; //# sourceMappingURL=useShortcutHelp.d.ts.map