import type { MaybeRef } from '@vueuse/core'; import type { Ref } from 'vue'; import type { ConfigProviderContext } from '../constants'; export declare function useGlobalConfig(key: K, defaultValue?: D): Ref | D>; export declare function useGlobalConfig(): Ref; export declare function useGlobalComponentSettings(block: string, sizeFallback?: MaybeRef): { ns: { namespace: any; b: (blockSuffix?: string) => string; e: (element?: string) => string; m: (modifier?: string) => string; be: (blockSuffix?: string, element?: string) => string; em: (element?: string, modifier?: string) => string; bm: (blockSuffix?: string, modifier?: string) => string; bem: (blockSuffix?: string, element?: string, modifier?: string) => string; is: { (name: string, state: boolean | undefined): string; (name: string): string; }; cssVar: (object: Record) => Record; cssVarName: (name: string) => string; cssVarBlock: (object: Record) => Record; cssVarBlockName: (name: string) => string; }; locale: import("@hd-front-end/element-plus/es/hooks").LocaleContext; zIndex: { initialZIndex: any; currentZIndex: any; nextZIndex: () => any; }; size: any; }; export declare const provideGlobalConfig: (config: MaybeRef, app?: any, global?: boolean) => any;