import React from "react";
interface RadioGroupOption {
    label: string;
    value: string;
}
interface RadioGroupProps {
    options: RadioGroupOption[];
    name: string;
    value: string;
    onChange: (value: string) => void;
}
declare const RadioGroup: React.FC<RadioGroupProps>;
export default RadioGroup;
