import type * as m from '@codemod/matchers'; import type { Module } from './module'; export declare class Bundle { type: 'webpack' | 'browserify'; entryId: string; modules: Map; constructor(type: 'webpack' | 'browserify', entryId: string, modules: Map); applyMappings(mappings: Record>): void; /** * Saves each module to a file and the bundle metadata to a JSON file. * @param path Output directory */ save(path: string): Promise; } //# sourceMappingURL=bundle.d.ts.map