/** * Parses the html for external resources and body * * @export * @param {string} html */ export default function parseHTML(html: string): { body: string; externalResources: (string | undefined)[]; }; //# sourceMappingURL=html-parser.d.ts.map