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