import { BaseComponentContext } from './BaseComponentContext.js'; export type HtmlContext = BaseComponentContext & { tag: string; attrs: { [key: string]: string | boolean | number | undefined; }; content: string; };