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