import React from 'react';
type Props = {
    domName: string;
    values: {
        key: string;
        label: string;
        disabled?: boolean;
    }[];
    name: string;
    onChange: (key: string) => void;
    containerClassName?: string;
    value: string;
    touched?: boolean;
    error?: string;
    setTouched?: () => void;
};
declare const RadioGroup: (props: Props) => React.JSX.Element;
export default RadioGroup;
