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