import { MaybeRef } from '@vueuse/core'; import { App, Ref } from 'vue'; import { ConfigProviderContext } from '../constants'; 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;