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