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