import { type Compiler } from '@rspack/core'; interface SourceMapUploadPluginOptions { outputDir: string; } declare class SourceMapUploadPlugin { private options; constructor(options: SourceMapUploadPluginOptions); apply(compiler: Compiler): void; } export default SourceMapUploadPlugin;