import React__default from 'react'; import { L as LABEL_POSITIONS } from '../../consts-DZiQBhNi.js'; interface RadioProps { label?: string; labelPosition?: keyof typeof LABEL_POSITIONS; customColor?: string; value?: any; disabled?: boolean; readOnly?: boolean; required?: boolean; id?: string; className?: string; name?: string; checked?: boolean; defaultChecked?: boolean; onChange?: (e: React__default.ChangeEvent) => void; } declare const Radio: React__default.ForwardRefExoticComponent>; export { Radio, type RadioProps };