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