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