import type { RenderableTreeNode } from './types'; export default class Tag = Record> { readonly $$mdtype: "Tag"; static isTag: (tag: any) => tag is Tag; name: N; attributes: A; children: RenderableTreeNode[]; constructor(name?: N, attributes?: A, children?: RenderableTreeNode[]); } //# sourceMappingURL=tag.d.ts.map