import React from "react"; export type GlobalActionDict = Record; export declare const GlobalActionsContext: React.Context; export declare function GlobalActionsProvider(props: { contextName: string; children?: React.ReactNode; actions: GlobalActionDict; }): React.JSX.Element; export declare function useGlobalActions(): GlobalActionDict;