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