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