import { type ChangeEvent, type FocusEvent } from 'react'; declare const useColorState: (value: string) => { color: string; setColor: import("react").Dispatch>; getPickerProps: () => { value: string; onChange: import("react").Dispatch>; }; getInputProps: () => { value: string; onChange: (event: ChangeEvent) => void; onFocus: (event: FocusEvent) => void; onBlur: (event: FocusEvent) => void; }; }; export default useColorState;