import webpack from 'webpack'; export interface InlineRequireWebpackPluginOptions { sourceMap?: boolean; cache?: boolean; } declare class InlineRequireWebpackPlugin { private readonly options; private readonly sideEffectFree; constructor(options?: Partial); collectSideEffects(compiler: webpack.Compiler, compilation: webpack.compilation.Compilation, modules: webpack.compilation.Module[]): void; apply(compiler: webpack.Compiler): void; } export { InlineRequireWebpackPlugin };