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