import { PropsWithChildren } from "react"; import { ActionHub } from "applesauce-actions"; export declare const ActionsContext: import("react").Context; /** Provides an ActionHub to the component tree */ export declare function ActionsProvider({ actionHub, children }: PropsWithChildren<{ actionHub?: ActionHub; }>): import("react/jsx-runtime").JSX.Element;