interface RadioGroupProps {
    readonly options: {
        label?: string;
        value: string | undefined;
    }[];
    readonly value: string | undefined;
    readonly onChange: (newValue: string | undefined) => void;
}
declare const RadioGroup: ({ options, value, onChange }: RadioGroupProps) => import("react/jsx-runtime").JSX.Element;
export default RadioGroup;
