/// <reference types="react" />
import { Themecolor } from '../../@declares';
import { InputTypes } from '.';
declare namespace Color {
    type Input = InputTypes.CoreInput<string> & React.DOMAttributes<HTMLInputElement> & {
        id?: string;
        tabIndex?: number;
        disabled?: boolean;
        value?: string;
    };
    type Color = Themecolor | 'theme' | 'posi' | 'nega' | 'warn';
}
declare const Color: React.FC<Color.Input>;
export { Color, Color as default };
