import { default as React } from 'react';
import { FormSelectChoice } from '../../../lib/types/types';

interface InputRadioProps {
    fieldId: string;
    index: number;
    option: FormSelectChoice<string, string>;
    value: string;
    onChange: Function;
    disabled?: boolean;
}
export declare const InputRadio: ({ fieldId, index, option, value, onChange, disabled, }: InputRadioProps) => React.JSX.Element;
export {};
