import { Ref, InjectionKey } from 'vue'; import { modalItemContextKey as injectContext } from '../utils/hook'; import { GlobalProvide, UseLocaleResult, LocaleProps, EleLocale } from './types'; export { injectContext }; /** * 全局配置键名 */ export declare const CONFIG_KEY: InjectionKey; /** * 获取全局配置 */ export declare function useReceiver(): GlobalProvide; /** * 获取全局属性 */ export declare function useGlobalProps(name: string): Ref; /** * 获取国际化 */ export declare function useLocale(name?: K, props?: LocaleProps): UseLocaleResult; export declare const configValues: any;