import * as react_jsx_runtime from 'react/jsx-runtime'; import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; import { RadioGroup as RadioGroup$1 } from 'radix-ui'; import { Label } from './label.js'; declare const radioGroupItemVariants: (props?: ({ variant?: "default" | "outline" | "secondary" | "destructive" | "success" | "warning" | "muted" | null | undefined; size?: "default" | "sm" | "lg" | null | undefined; motion?: "pop" | "none" | "glow" | "pop-glow" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; type ItemChrome = { itemVariant?: VariantProps["variant"]; itemSize?: VariantProps["size"]; itemMotion?: VariantProps["motion"]; }; type RadioGroupProps = React.ComponentPropsWithoutRef & ItemChrome; declare function RadioGroup({ className, itemVariant, itemSize, itemMotion, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element; type RadioGroupItemProps = React.ComponentPropsWithoutRef & VariantProps; declare const RadioGroupItem: React.ForwardRefExoticComponent, "ref"> & VariantProps<(props?: ({ variant?: "default" | "outline" | "secondary" | "destructive" | "success" | "warning" | "muted" | null | undefined; size?: "default" | "sm" | "lg" | null | undefined; motion?: "pop" | "none" | "glow" | "pop-glow" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string> & React.RefAttributes>; type RadioGroupLabelProps = React.ComponentPropsWithRef; declare function RadioGroupLabel({ className, ...props }: RadioGroupLabelProps): react_jsx_runtime.JSX.Element; export { RadioGroup, RadioGroupItem, type RadioGroupItemProps, RadioGroupLabel, type RadioGroupLabelProps, type RadioGroupProps, radioGroupItemVariants };