import * as Radio from "@radix-ui/react-radio-group"; import { CSSProperties, ReactElement } from "react"; import { RadioItemProps } from "../RadioItem"; type RadioGroupVariant = "clear" | "card" | "sunk"; interface RadioGroupProps extends Radio.RadioGroupProps { children: ReactElement | ReactElement[]; variant?: RadioGroupVariant; className?: string; style?: CSSProperties; } declare const RadioGroup: import("react").ForwardRefExoticComponent>; export { RadioGroup, type RadioGroupProps }; //# sourceMappingURL=RadioGroup.d.ts.map