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