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