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