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