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