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