import { type Parent } from "unist"; export type HtmlNode = Parent & { type: string; tagName: string; properties: Record; }; export type TextNode = HtmlNode & { value: string; }; //# sourceMappingURL=types.d.ts.map