import { Compiler, WebpackPluginInstance } from 'webpack';
import { SimpleProgressWebpackPluginOptions } from '../simple-process-webpack-plugin.interfaces';
export declare class ExpandedLogger implements WebpackPluginInstance {
    private readonly options;
    constructor(options: SimpleProgressWebpackPluginOptions);
    apply(compiler: Compiler): ReturnType<WebpackPluginInstance['apply']>;
}
