import type { RadioGroupVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
import { RadioGroup as RadioGroupPrimitive } from "react-aria-components";
interface RadioGroupRootProps extends ComponentPropsWithRef<typeof RadioGroupPrimitive>, RadioGroupVariants {
}
declare const RadioGroupRoot: ({ children, className, variant, ...props }: RadioGroupRootProps) => import("react/jsx-runtime").JSX.Element;
export { RadioGroupRoot };
export type { RadioGroupRootProps };
