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