import React__default, { HTMLAttributes } from 'react'; import { L as LABEL_POSITIONS } from '../../consts-DZiQBhNi.js'; interface RadioGroupProps extends HTMLAttributes { label?: string; name: string; options: Array<{ label: string; value: any; }>; labelPosition?: keyof typeof LABEL_POSITIONS; customColor?: string; isRequired?: boolean; vertical?: boolean; gap?: string; error?: string; value?: any; onValueChange?: (value: any) => void; containerClassName?: string; } declare const RadioGroup: React__default.ForwardRefExoticComponent>; export { RadioGroup };