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