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