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