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