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