import { type ShortcutAction } from "../utils/shortcuts"; type ShortcutContextType = { registerShortcut: (action: ShortcutAction, handler: () => void) => void; }; declare const ShortcutContext: import("react").Context; export { ShortcutContext }; export declare const ShortcutProvider: React.FC<{ children: React.ReactNode; }>; //# sourceMappingURL=shortcut-provider.d.ts.map