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