import React from 'react'; import type { IInputPropsBase } from '@adam-sv/arc'; export interface IColorInputProps extends IInputPropsBase { showSwatch?: boolean; value?: string; inputRef?: React.RefObject; } export declare function ColorInput(props: IColorInputProps): import("react/jsx-runtime").JSX.Element;