export declare type SimpleProgressWebpackPluginFormat = 'compact' | 'expanded' | 'minimal' | 'simple' | 'verbose';
export interface SimpleProgressWebpackPluginOptions {
    color: boolean;
    format: SimpleProgressWebpackPluginFormat;
    name: string;
}
