import { EleLocale } from './types'; import { PropType, ExtractPropTypes } from 'vue'; /** * 属性 */ export declare const configProviderProps: { /** 国际化 */ locale: PropType; /** 表格全局配置 */ table: PropType>>; /** 高德地图key */ mapKey: StringConstructor; /** license */ license: StringConstructor; }; export type ConfigProviderProps = ExtractPropTypes; /** * 全局配置键名 */ export declare const PROVIDE_KEY = "EleGlobalConfig"; /** * 布局状态共享键名 */ export declare const LAYOUT_KEY = "EleLayoutState";