import { IConfig } from '../types/config'; /** */ /** * @description config配置项默认值 */ export declare const Config: IConfig; /** * @description 设置config配置项 * @param config 配置项 */ export declare function setConfig(config: IConfig): void; /** * @description 设置config配置项 * @param config 配置项 */ export declare function setConfigValue(key: K, value: T[K]): void; /** * @description 获取通过key值获取配置项value * @param key * @returns value的值 */ export declare function getConfigValue(key: keyof IConfig): string | number | boolean | { urls?: string[] | undefined; errors?: (string | { regExp: boolean; input: string; })[] | undefined; apis?: string[] | undefined; } | undefined;