import { ColorPickerProps } from "@mantine/core"; import { FieldValues, UseControllerProps } from "react-hook-form"; type Props = ColorPickerProps & { name: UseControllerProps["name"]; rules?: UseControllerProps["rules"]; defaultValue?: UseControllerProps["defaultValue"]; }; declare function RHFColorPicker(props: Props): import("react/jsx-runtime").JSX.Element; export default RHFColorPicker; export declare const createColorPickerField: () => (props: Props) => import("react/jsx-runtime").JSX.Element;