import { EmptyOption } from '../components/empty/type'; import { Pages } from '../entity'; export * from '../element-plus/components/attrs'; export * from '../components/attrs'; export declare const AMapConfig: { mapKey: string; mapSecret: string; }; export interface EmptyTypeInterface { LOADING: unknown; NONE: unknown; SUCCESS: unknown; EMPTY: unknown; EMPTY_VAR: unknown; } /** * @example * // 扩展Empty组件类型 * declare module 'mrxy-yk/config' { * export interface EmptyTypeInterface { * EMPTY_VAR3: string * } * } */ export declare const EmptyStatusExtendConfig: Record, EmptyOption>; /** * ECharts主题配置 * 配置的主题会和默认主题合并,如果需要覆盖请使用echarts.registerTheme方法注册主题 */ export declare const EChartsThemeConfig: { dark: Record; default: Record; }; /** * 分页配置 */ export declare const PagesConfig: { params: (pages: Pages) => any; }; /** * 加密配置 */ export declare const EncryptConfig: { encryptMethod: (str: string) => string; decryptMethod: (str: string) => string; };