///
import type { PDSTextType } from '../../../common';
type RadioProps = {
text?: PDSTextType;
fontWeight?: 'bold' | 'regular';
state?: 'normal' | 'disabled';
checked?: boolean;
name: string;
value: string;
onChange: (e: React.ChangeEvent) => void;
};
declare function Radio({ text, fontWeight, state, checked, name, value, onChange }: RadioProps): JSX.Element;
export default Radio;