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