/// import * as NAST from "nast-types"; /** * Render NAST to HTML. * @param tree */ declare function renderToHTML(data: NAST.Block | NAST.SemanticString[]): string; /** * Render NAST to JSX.Element. * @param tree */ declare function renderToJSX(data: NAST.Block | NAST.SemanticString[]): JSX.Element; export { renderToHTML, renderToJSX }; //# sourceMappingURL=index.d.ts.map