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