import { type UseControllerProps, type FieldValues } from "react-hook-form";
import { type NumberInputProps as $NumberInputProps } from "@mantine/core";
export type NumberInputProps<T extends FieldValues> = UseControllerProps<T> & Omit<$NumberInputProps, "value" | "defaultValue">;
export declare function NumberInput<T extends FieldValues>({ name, control, defaultValue, rules, shouldUnregister, onChange, ...props }: NumberInputProps<T>): import("react/jsx-runtime").JSX.Element;
