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