import type HTMLAnchorElement from '../nodes/html-anchor-element/HTMLAnchorElement.js';
import type HTMLAreaElement from '../nodes/html-area-element/HTMLAreaElement.js';
import type HTMLAudioElement from '../nodes/html-audio-element/HTMLAudioElement.js';
import type HTMLBaseElement from '../nodes/html-base-element/HTMLBaseElement.js';
import type HTMLBodyElement from '../nodes/html-body-element/HTMLBodyElement.js';
import type HTMLBRElement from '../nodes/html-br-element/HTMLBRElement.js';
import type HTMLButtonElement from '../nodes/html-button-element/HTMLButtonElement.js';
import type HTMLCanvasElement from '../nodes/html-canvas-element/HTMLCanvasElement.js';
import type HTMLDListElement from '../nodes/html-d-list-element/HTMLDListElement.js';
import type HTMLDataElement from '../nodes/html-data-element/HTMLDataElement.js';
import type HTMLDataListElement from '../nodes/html-data-list-element/HTMLDataListElement.js';
import type HTMLDetailsElement from '../nodes/html-details-element/HTMLDetailsElement.js';
import type HTMLDialogElement from '../nodes/html-dialog-element/HTMLDialogElement.js';
import type HTMLDivElement from '../nodes/html-div-element/HTMLDivElement.js';
import type HTMLElement from '../nodes/html-element/HTMLElement.js';
import type HTMLEmbedElement from '../nodes/html-embed-element/HTMLEmbedElement.js';
import type HTMLFieldSetElement from '../nodes/html-field-set-element/HTMLFieldSetElement.js';
import type HTMLFormElement from '../nodes/html-form-element/HTMLFormElement.js';
import type HTMLHeadElement from '../nodes/html-head-element/HTMLHeadElement.js';
import type HTMLHeadingElement from '../nodes/html-heading-element/HTMLHeadingElement.js';
import type HTMLHRElement from '../nodes/html-hr-element/HTMLHRElement.js';
import type HTMLHtmlElement from '../nodes/html-html-element/HTMLHtmlElement.js';
import type HTMLIFrameElement from '../nodes/html-iframe-element/HTMLIFrameElement.js';
import type HTMLImageElement from '../nodes/html-image-element/HTMLImageElement.js';
import type HTMLInputElement from '../nodes/html-input-element/HTMLInputElement.js';
import type HTMLLabelElement from '../nodes/html-label-element/HTMLLabelElement.js';
import type HTMLLegendElement from '../nodes/html-legend-element/HTMLLegendElement.js';
import type HTMLLIElement from '../nodes/html-li-element/HTMLLIElement.js';
import type HTMLLinkElement from '../nodes/html-link-element/HTMLLinkElement.js';
import type HTMLMapElement from '../nodes/html-map-element/HTMLMapElement.js';
import type HTMLMenuElement from '../nodes/html-menu-element/HTMLMenuElement.js';
import type HTMLMetaElement from '../nodes/html-meta-element/HTMLMetaElement.js';
import type HTMLMeterElement from '../nodes/html-meter-element/HTMLMeterElement.js';
import type HTMLModElement from '../nodes/html-mod-element/HTMLModElement.js';
import type HTMLOListElement from '../nodes/html-o-list-element/HTMLOListElement.js';
import type HTMLObjectElement from '../nodes/html-object-element/HTMLObjectElement.js';
import type HTMLOptGroupElement from '../nodes/html-opt-group-element/HTMLOptGroupElement.js';
import type HTMLOptionElement from '../nodes/html-option-element/HTMLOptionElement.js';
import type HTMLOutputElement from '../nodes/html-output-element/HTMLOutputElement.js';
import type HTMLParagraphElement from '../nodes/html-paragraph-element/HTMLParagraphElement.js';
import type HTMLParamElement from '../nodes/html-param-element/HTMLParamElement.js';
import type HTMLPictureElement from '../nodes/html-picture-element/HTMLPictureElement.js';
import type HTMLPreElement from '../nodes/html-pre-element/HTMLPreElement.js';
import type HTMLProgressElement from '../nodes/html-progress-element/HTMLProgressElement.js';
import type HTMLQuoteElement from '../nodes/html-quote-element/HTMLQuoteElement.js';
import type HTMLScriptElement from '../nodes/html-script-element/HTMLScriptElement.js';
import type HTMLSelectElement from '../nodes/html-select-element/HTMLSelectElement.js';
import type HTMLSlotElement from '../nodes/html-slot-element/HTMLSlotElement.js';
import type HTMLSourceElement from '../nodes/html-source-element/HTMLSourceElement.js';
import type HTMLSpanElement from '../nodes/html-span-element/HTMLSpanElement.js';
import type HTMLStyleElement from '../nodes/html-style-element/HTMLStyleElement.js';
import type HTMLTableCaptionElement from '../nodes/html-table-caption-element/HTMLTableCaptionElement.js';
import type HTMLTableCellElement from '../nodes/html-table-cell-element/HTMLTableCellElement.js';
import type HTMLTableColElement from '../nodes/html-table-col-element/HTMLTableColElement.js';
import type HTMLTableElement from '../nodes/html-table-element/HTMLTableElement.js';
import type HTMLTableRowElement from '../nodes/html-table-row-element/HTMLTableRowElement.js';
import type HTMLTableSectionElement from '../nodes/html-table-section-element/HTMLTableSectionElement.js';
import type HTMLTemplateElement from '../nodes/html-template-element/HTMLTemplateElement.js';
import type HTMLTextAreaElement from '../nodes/html-text-area-element/HTMLTextAreaElement.js';
import type HTMLTimeElement from '../nodes/html-time-element/HTMLTimeElement.js';
import type HTMLTitleElement from '../nodes/html-title-element/HTMLTitleElement.js';
import type HTMLTrackElement from '../nodes/html-track-element/HTMLTrackElement.js';
import type HTMLUListElement from '../nodes/html-u-list-element/HTMLUListElement.js';
import type HTMLVideoElement from '../nodes/html-video-element/HTMLVideoElement.js';

export default interface IHTMLElementTagNameMap {
	a: HTMLAnchorElement;
	abbr: HTMLElement;
	address: HTMLElement;
	area: HTMLAreaElement;
	article: HTMLElement;
	aside: HTMLElement;
	audio: HTMLAudioElement;
	b: HTMLElement;
	base: HTMLBaseElement;
	bdi: HTMLElement;
	bdo: HTMLElement;
	body: HTMLBodyElement;
	template: HTMLTemplateElement;
	form: HTMLFormElement;
	input: HTMLInputElement;
	textarea: HTMLTextAreaElement;
	script: HTMLScriptElement;
	img: HTMLImageElement;
	link: HTMLLinkElement;
	style: HTMLStyleElement;
	label: HTMLLabelElement;
	slot: HTMLSlotElement;
	meta: HTMLMetaElement;
	blockquote: HTMLQuoteElement;
	br: HTMLBRElement;
	button: HTMLButtonElement;
	canvas: HTMLCanvasElement;
	caption: HTMLTableCaptionElement;
	cite: HTMLElement;
	code: HTMLElement;
	col: HTMLTableColElement;
	colgroup: HTMLTableColElement;
	data: HTMLDataElement;
	datalist: HTMLDataListElement;
	dd: HTMLElement;
	del: HTMLModElement;
	details: HTMLDetailsElement;
	dfn: HTMLElement;
	dialog: HTMLDialogElement;
	div: HTMLDivElement;
	dl: HTMLDListElement;
	dt: HTMLElement;
	em: HTMLElement;
	embed: HTMLEmbedElement;
	fieldset: HTMLFieldSetElement;
	figcaption: HTMLElement;
	figure: HTMLElement;
	footer: HTMLElement;
	h1: HTMLHeadingElement;
	h2: HTMLHeadingElement;
	h3: HTMLHeadingElement;
	h4: HTMLHeadingElement;
	h5: HTMLHeadingElement;
	h6: HTMLHeadingElement;
	head: HTMLHeadElement;
	header: HTMLElement;
	hgroup: HTMLElement;
	hr: HTMLHRElement;
	html: HTMLHtmlElement;
	i: HTMLElement;
	iframe: HTMLIFrameElement;
	ins: HTMLModElement;
	kbd: HTMLElement;
	legend: HTMLLegendElement;
	li: HTMLLIElement;
	main: HTMLElement;
	map: HTMLMapElement;
	mark: HTMLElement;
	menu: HTMLMenuElement;
	meter: HTMLMeterElement;
	nav: HTMLElement;
	noscript: HTMLElement;
	object: HTMLObjectElement;
	ol: HTMLOListElement;
	optgroup: HTMLOptGroupElement;
	option: HTMLOptionElement;
	output: HTMLOutputElement;
	p: HTMLParagraphElement;
	param: HTMLParamElement;
	picture: HTMLPictureElement;
	pre: HTMLPreElement;
	progress: HTMLProgressElement;
	q: HTMLQuoteElement;
	rb: HTMLElement;
	rp: HTMLElement;
	rt: HTMLElement;
	rtc: HTMLElement;
	ruby: HTMLElement;
	s: HTMLElement;
	samp: HTMLElement;
	section: HTMLElement;
	select: HTMLSelectElement;
	small: HTMLElement;
	source: HTMLSourceElement;
	span: HTMLSpanElement;
	strong: HTMLElement;
	sub: HTMLElement;
	summary: HTMLElement;
	sup: HTMLElement;
	table: HTMLTableElement;
	tbody: HTMLTableSectionElement;
	td: HTMLTableCellElement;
	tfoot: HTMLTableSectionElement;
	th: HTMLTableCellElement;
	thead: HTMLTableSectionElement;
	time: HTMLTimeElement;
	title: HTMLTitleElement;
	tr: HTMLTableRowElement;
	track: HTMLTrackElement;
	u: HTMLElement;
	ul: HTMLUListElement;
	var: HTMLElement;
	video: HTMLVideoElement;
	wbr: HTMLElement;
}
