import type { Components, JSX } from "../types/components";

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