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