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