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