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