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