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