import { type ComputedRef, type PropType } from 'vue';
import type { ActionsProps } from './interface';
export type ActionsContextValue = {
    prefixCls?: string;
    classNames?: ActionsProps['classNames'];
    styles?: ActionsProps['styles'];
};
export declare const useActionsContextInject: () => ComputedRef<ActionsContextValue>;
export declare const ActionsContextProvider: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
    value: {
        type: PropType<ActionsContextValue>;
        required: true;
    };
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
    [key: string]: any;
}>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
    value: {
        type: PropType<ActionsContextValue>;
        required: true;
    };
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
