import { IImportType, IReplaceConfig } from './types'; /** * 解析替换配置 * * @param {Array} configList 配置列表 * @returns {array} 处理后的配置列表 * * @example * ```ts * parseReplaceConfig([{ * source: '', * target: '', * }]) * ``` */ export declare function parseReplaceConfig(configList: Array): { source: string; target: string; sourceName: string; sourceType: IImportType; targetName: string; targetType: IImportType; }[];