import type * as webpack from 'webpack'; /** * @internal */ export interface IWebpackStatsPluginOptions { dropPath: string; } /** * This plugin drops the webpack stats object to the specified filesystem path * * @internal */ export declare class WebpackStatsPlugin implements webpack.WebpackPluginInstance { private _options; constructor(options: IWebpackStatsPluginOptions); apply(compiler: webpack.Compiler): void; } //# sourceMappingURL=WebpackStatsPlugin.d.ts.map