import { FC } from "react";
import "./CustomRadioGroup.scss";
interface CustomRadioGroupProps {
    value: any;
    handleChange: (event: any) => void;
    fields: {
        value: any;
        label: string;
    }[];
    iconType?: "withBackground" | "withoutBackground";
}
declare const CustomRadioGroup: FC<CustomRadioGroupProps>;
export default CustomRadioGroup;
