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