export interface IHtmlNode { startIndex?: number; type?: string; data?: string; tag?: string; name?: string; attribs?: any; children?: IHtmlNode[]; } //# sourceMappingURL=html-node.d.ts.map