import { type ComputedRef } from "vue";
import type { ThoughtChainNodeContextProps } from "./interface";
export declare const globalThoughtChainNodeContextApi: import("vue").ShallowRef<ThoughtChainNodeContextProps>;
export declare const useThoughtChainNodeContextProvider: (value: ComputedRef<ThoughtChainNodeContextProps>) => void;
export declare const useThoughtChainNodeContextInject: () => ComputedRef<ThoughtChainNodeContextProps>;
export declare const ThoughtChainNodeContextProvider: import("vue").DefineComponent<{
    value: {
        type: import("vue").PropType<ThoughtChainNodeContextProps>;
        default: ThoughtChainNodeContextProps;
    };
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
    [key: string]: any;
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
    value: {
        type: import("vue").PropType<ThoughtChainNodeContextProps>;
        default: ThoughtChainNodeContextProps;
    };
}>>, {
    value: ThoughtChainNodeContextProps;
}, {}>;
export default ThoughtChainNodeContextProvider;
