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