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