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