import { IMinifyPluginOpts } from './interface';
import type { Compiler } from 'webpack';
export declare class LightningCssMinifyPlugin {
    private readonly options;
    private readonly transform;
    constructor(opts?: IMinifyPluginOpts);
    apply(compiler: Compiler): void;
    private transformAssets;
}
