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