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