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