import type { Components, JSX } from "../types/components"; interface HeatMap extends Components.HeatMap, HTMLElement {} export const HeatMap: { prototype: HeatMap; new (): HeatMap; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;