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