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