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