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