import { UseControllerProps, FieldValues } from 'react-hook-form';
import { ColorInputProps as $ColorInputProps } from '@mantine/core';
export type ColorInputProps<T extends FieldValues> = UseControllerProps<T> & Omit<$ColorInputProps, "value" | "defaultValue">;
export declare function ColorInput<T extends FieldValues>({ name, control, defaultValue, rules, shouldUnregister, onChange, ...props }: ColorInputProps<T>): import("react").JSX.Element;
