UNPKG

ant-design-x-vue-next

Version:

Ant Design X for Vue — community continuation aligned with @ant-design/x

22 lines (21 loc) 1.01 kB
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>;