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