export declare enum IImportType { ImportSpecifier = "ImportSpecifier", ImportDefaultSpecifier = "ImportDefaultSpecifier", importNamespaceSpecifier = "ImportNamespaceSpecifier", FAKE = "FAKE" } export type IImportItem = string | Array | { sourceName?: string; sourceType?: IImportType; targetName?: string; targetType?: IImportType; }; export type IReplaceConfig = { importedList: Array; source: string | Array; target: string; }; export type IParsedConfigItem = { source: string; target: string; sourceName: string; sourceType: IImportType; targetName: string; targetType: IImportType; };