import { Compiler } from "webpack";
import { Tag } from "../../types";
interface HeadPluginOptions {
    tags: Tag[];
}
declare const _default: {
    new ({ tags }: HeadPluginOptions): {
        tags: Tag[];
        apply(compiler: Compiler): void;
    };
};
export = _default;
