import type { MaybeRef } from '@vueuse/core'; import type { App, Ref } from 'vue'; import type { ConfigProviderContext } from 'element-plus/es/tokens'; export declare function useGlobalConfig(key: K, defaultValue?: D): Ref | D>; export declare function useGlobalConfig(): Ref; export declare const provideGlobalConfig: (config: MaybeRef, app?: App | undefined, global?: boolean) => import("vue").ComputedRef> | undefined;