import * as React from "react"; import { ColorPickerBaseProps } from "react-colorful/dist/types"; import { DropdownProps } from "../Dropdown"; import { TextInputProps } from "../TextInput"; import { ViewProps } from "../View"; export declare const validHex: (color: string) => boolean; export interface Props extends ColorPickerBaseProps { color: string; onChange: ColorPickerBaseProps["onChange"]; placement?: DropdownProps["placement"]; inputProps?: TextInputProps; wrapperProps?: ViewProps; } declare const ColorPicker: React.FunctionComponent; export default ColorPicker;