import { Compiler } from "webpack";
interface CleanUpStatsPluginOptions {
    MiniCSSExtractPlugin?: boolean;
    tsLoader?: boolean;
}
declare class CleanUpStatsPlugin {
    private option;
    constructor(option?: CleanUpStatsPluginOptions);
    shouldPickStatChild(child: any): boolean;
    shouldPickWarning(message: any): boolean;
    apply(compiler: Compiler): void;
}
export { CleanUpStatsPlugin };
