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