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