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