import { IColorInputProps } from '../ColorInput'; import { IWithFormFieldProps } from '../WithFormField'; /** * A Color selection field with form validation
*/ declare const ColorInputField: (props: IWithFormFieldProps & IColorInputProps) => JSX.Element; export { ColorInputField };