import type { Compilation, Compiler, WebpackError } from 'webpack';
interface CleanUpStatsPluginOptions {
    MiniCSSExtractPlugin: boolean;
    tsLoader: boolean;
}
export default class CleanUpStatsPlugin {
    option: CleanUpStatsPluginOptions;
    constructor(option?: Partial<CleanUpStatsPluginOptions>);
    shouldPickStatChild(child: Compilation): boolean;
    shouldPickWarning(message: WebpackError): boolean;
    apply(compiler: Compiler): void;
}
export {};
