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