import React from "react";
export interface RadioGroupProps {
    defaultValue: string;
    fields: string[];
    direction: "horizontal" | "vertical";
    actions: {
        onChange: (value: string) => void;
    };
    classNameRadioGroup?: string;
}
declare const RadioGroup: React.FC<RadioGroupProps>;
export { RadioGroup };
