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