import { PropType, ExtractPropTypes } from 'vue'; import { EleMessageBoxOptions } from '../ele-app/plus'; import { TableGlobalConfig, MessageGlobalConfig, EleLocale } from './types'; /** * 属性 */ export declare const configProviderProps: { /** 国际化 */ locale: PropType; /** 表格全局配置 */ table: PropType; /** 消息提示全局配置 */ message: PropType; /** 消息弹窗全局配置 */ messageBox: PropType; /** license */ license: StringConstructor; /** 高德地图key */ mapKey: StringConstructor; }; export type ConfigProviderProps = ExtractPropTypes;