import React from 'react'; import { type WithIntlProps, type WrappedComponentProps } from 'react-intl'; import { type Color } from './Status'; export type ColorType = Color; export interface Props { autoFocus?: boolean; onColorClick: (value: ColorType) => void; onColorHover?: (value: ColorType) => void; onEnter: () => void; onTextChanged: (value: string) => void; selectedColor: ColorType; text: string; } export declare const StatusPicker: React.FC> & { WrappedComponent: React.ComponentType; };