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