import React from 'react'; import { FieldProps } from 'formik'; export interface RadioButtonProps { className?: string | null; classNameLabel?: string | null; disabled?: boolean; id: string; label?: string | null; labelStyle?: object; name: string; style?: object; } export declare type RenderRadioButton = (props: FieldProps) => React.ReactNode; declare const RadioButtonField: React.FC; export default RadioButtonField;