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