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