export type XmlNode = XmlElement | XmlText; export type XmlElement = { kind: "element"; tag: string; props: Record; children: XmlNode[]; }; export type XmlText = { kind: "text"; text: string; };