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