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