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