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