import { ObjectCache } from '../utils/ObjectCache'; import { MainModuleInfo } from './js/MainModule'; interface RemapCache { readonly mainModuleCache: ObjectCache; readonly moduleResolveCache: ObjectCache; readonly mainModuleResolveCache: ObjectCache; } declare const createRemapCache: () => RemapCache; export { RemapCache, createRemapCache };