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