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