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