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