import { type PropType, type InjectionKey, type ExtractPropTypes } from 'vue'; import { type Numeric } from '../utils'; export type ConfigProviderTheme = 'light' | 'dark'; export type ConfigProviderThemeVarsScope = 'local' | 'global'; export type ConfigProviderProvide = { iconPrefix?: string; }; export declare const CONFIG_PROVIDER_KEY: InjectionKey; export type ThemeVars = PropType>; export declare const configProviderProps: { tag: { type: PropType; default: keyof HTMLElementTagNameMap; }; theme: { type: PropType; default: ConfigProviderTheme; }; zIndex: NumberConstructor; themeVars: ThemeVars; themeVarsDark: ThemeVars; themeVarsLight: ThemeVars; themeVarsScope: { type: PropType; default: ConfigProviderThemeVarsScope; }; iconPrefix: StringConstructor; }; export type ConfigProviderProps = ExtractPropTypes; declare const _default: import("vue").DefineComponent<{ tag: { type: PropType; default: keyof HTMLElementTagNameMap; }; theme: { type: PropType; default: ConfigProviderTheme; }; zIndex: NumberConstructor; themeVars: ThemeVars; themeVarsDark: ThemeVars; themeVarsLight: ThemeVars; themeVarsScope: { type: PropType; default: ConfigProviderThemeVarsScope; }; iconPrefix: StringConstructor; }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly; default: keyof HTMLElementTagNameMap; }; theme: { type: PropType; default: ConfigProviderTheme; }; zIndex: NumberConstructor; themeVars: ThemeVars; themeVarsDark: ThemeVars; themeVarsLight: ThemeVars; themeVarsScope: { type: PropType; default: ConfigProviderThemeVarsScope; }; iconPrefix: StringConstructor; }>>, { tag: keyof HTMLElementTagNameMap; theme: ConfigProviderTheme; themeVarsScope: ConfigProviderThemeVarsScope; }, {}>; export default _default;