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