import type { CSSProperties, MouseEventHandler } from 'react'; import React from 'react'; import type { AggregationColor } from '../color'; import type { ColorFormatType, ColorPickerProps, ColorPickerSemanticClassNames, ColorPickerSemanticStyles } from '../interface'; export interface ColorTriggerProps { prefixCls: string; disabled?: boolean; format?: ColorFormatType; color: AggregationColor; open?: boolean; showText?: ColorPickerProps['showText']; className?: string; style?: CSSProperties; classNames: ColorPickerSemanticClassNames; styles: ColorPickerSemanticStyles; onClick?: MouseEventHandler; onMouseEnter?: MouseEventHandler; onMouseLeave?: MouseEventHandler; activeIndex: number; } declare const ColorTrigger: React.ForwardRefExoticComponent>; export default ColorTrigger;