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