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