import { ComputedRef } from "vue";
import { AttachmentContextProps } from "./interface";
export declare const globalAttachmentContextApi: import("vue").ShallowRef<AttachmentContextProps>;
export declare const useAttachmentContextProvider: (value: ComputedRef<AttachmentContextProps>) => void;
export declare const useAttachmentContextInject: () => ComputedRef<AttachmentContextProps>;
export declare const AttachmentContextProvider: import("vue").DefineComponent<{
    value: {
        type: import("vue").PropType<AttachmentContextProps>;
        default: AttachmentContextProps;
    };
}, () => 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<AttachmentContextProps>;
        default: AttachmentContextProps;
    };
}>>, {
    value: AttachmentContextProps;
}, {}>;
export default AttachmentContextProvider;
