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