///
import { Props as TextFieldPropsType } from '../TextField';
import React, { FC } from 'react';
import { flex, box } from '../../utility/box';
declare global {
interface Window {
closeActiveColorPicker?(): void;
}
}
type OmittedKeys = 'prefix' | 'onChange';
export type PropsType = Pick> & typeof flex.props & typeof box.props & {
emptyIsTransparent?: boolean;
transparentPlaceholder: string;
initialValue: string;
resetButtonTitle: string;
hidePopover?: boolean;
hideColorDrop?: boolean;
onChange(value: string): void;
};
export declare enum TestIds {
container = "container",
colorDrop = "color-drop",
reset = "reset"
}
declare const ColorField: FC>;
export default ColorField;