import { Compiler } from "webpack";
import { Options } from "./options";
/**
 * Webpack plugin to generate a text file asset containing all of the licenses for your production third-party dependencies.
 */
export declare class LicenseFilePlugin {
    private pluginName;
    private options;
    constructor(options?: Partial<Options>);
    apply(compiler: Compiler): void;
}
