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