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