import { Context as ReactContext } from "react"; import { handlerFunction, options } from "./Shortcuts"; import { Keymap } from "../utils/types"; export declare type contextType = { shortcuts: Keymap; globalFunctions: globalFunctionsType; }; export declare type globalFunctionsType = { [key: string]: { name: string; handler: handlerFunction; } & options; }; declare const Context: ReactContext; export declare const ContextProvider: import("react").ProviderExoticComponent>; export declare const ContextConsumer: import("react").ExoticComponent>; export default Context;