import type { ConfigProviderProps } from '../types/props' import type { InjectionKey, Ref } from 'vue' const SYMBOL_NAME = 'config-provider-context' export type ConfigProviderContext = Partial export const configProviderContextKey: InjectionKey< Ref > = Symbol(SYMBOL_NAME)