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