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