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