import { PropType } from 'vue'; export interface ConfigProviderProps { abstract?: boolean; tag?: string; inlineThemeDisabled?: boolean; locale?: string; themeName?: string; theme?: object; } export declare const configProviderProps: { abstract: BooleanConstructor; tag: { type: StringConstructor; default: string; }; inlineThemeDisabled: { type: BooleanConstructor; }; locale: { type: StringConstructor; default: string; validator(value: string): boolean; }; themeName: { type: PropType<"light" | "dark">; }; theme: { type: ObjectConstructor; }; };