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