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