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