/**
List of standard HTML tags.

@example
```
import htmlTags = require('html-tags');

console.log(htmlTags);
//=> ['a', 'abbr', 'acronym', …]
```
*/
declare const htmlTags: readonly string[];

export = htmlTags;
