import type EsriColor from "@arcgis/core/Color"; import type { ColorInputProps as ColorInputPropsBase } from "@vertigis/react-ui/ColorInput"; import type { FC } from "react"; /** * Properties for ColorInput. */ export interface ColorInputProps extends Omit { /** * The color value. This can be any valid CSS color value such as: blue, * #0000FF, rgb(0, 0, 255), rgba(0, 0, 255, 0.5), or an rbga number array * representing the color, or an Esri `Color` object. */ value: EsriColor | string | undefined; } declare const ColorInput: FC; export default ColorInput;