export declare type HtmlOptions = {
title?: string;
filename?: string;
template?: string;
templateContent?: string;
templateParameters?: object;
favicon?: string;
description?: string;
keywords?: string;
};
export declare type Html = HtmlOptions | false;