interface HtmlPluginInterface {
    manifestPath: string;
    include?: string[];
    exclude?: string[];
}
type IncludeList = Record<string, {
    html: string;
    js: string[];
    css: string[];
    static: string[];
} | undefined>;

export type { HtmlPluginInterface as H, IncludeList as I };
