import { KnapsackHtmlRenderer } from './dist/index'; // allowing named exports for future-proofing export { KnapsackHtmlRenderer }; // doing this to preserve backwards compatibility // We used to export using `module.exports` and `exports default` is not the same // Using `exports =` is how to type `module.exports` export = KnapsackHtmlRenderer;