import { LocaleContext } from "../../../../hooks/use-locale/index.js"; import "../../../../hooks/index.js"; import { ConfigProviderProps } from "../config-provider-props.js"; import { ConfigProviderContext } from "../constants.js"; import "../../../../index.js"; import * as vue from "vue"; import { App, Ref } from "vue"; import { MaybeRef } from "@vueuse/core"; //#region ../../packages/components/config-provider/src/hooks/use-global-config.d.ts declare function useGlobalConfig(key: K, defaultValue?: D): Ref | D>; declare function useGlobalConfig(): Ref; declare function useGlobalComponentSettings(block: string, sizeFallback?: MaybeRef): { ns: { namespace: vue.ComputedRef; 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: LocaleContext; zIndex: { initialZIndex: vue.ComputedRef; currentZIndex: vue.ComputedRef; nextZIndex: () => number; }; size: vue.ComputedRef<"" | "default" | "small" | "large">; }; declare const provideGlobalConfig: (config: MaybeRef, app?: App, global?: boolean) => vue.ComputedRef> | undefined; //#endregion export { provideGlobalConfig, useGlobalComponentSettings, useGlobalConfig };