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