import * as React from "react"; import type { GlobalAction, GlobalState } from "../../shared/types"; export declare const Context: React.Context<{ globalState: GlobalState; dispatch: React.Dispatch; }>; export declare const useLadleContext: () => { globalState: GlobalState; dispatch: React.Dispatch; };