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