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