/// <reference types="react" />
import { FormContextType, FormFieldError } from "../../types/common-form-components-types";
import { RadioProps as MUIProps } from "@material-ui/core";
import { OptionType } from "../../model";
declare type RadioProps = FormContextType & FormFieldError & {
    label: string;
    helperText?: string;
    options: (OptionType & {
        MuiProps?: Exclude<MUIProps, OptionType>;
    })[];
};
export declare const Radio: (props: RadioProps) => JSX.Element;
export {};
