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