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