import { TextFieldProps } from "@material-ui/core/TextField"; import { converters } from "./transformers"; import { FC } from "react"; type props = { defaultValue?: string; onChange: (color: string) => void; convert?: keyof converters; hintText?: string; floatingLabelText?: string; showPicker?: boolean; internalValue?: string; setShowPicker?: (open: boolean) => void; setValue?: (value: string) => void; } & Omit; declare const ColorPicker: FC; export default ColorPicker;