export type HostNodeJson = | { kind: "element"; tag: string; props: Record; rawProps: Record; children: HostNodeJson[]; } | { kind: "text"; text: string; };