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