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