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