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