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