import React from 'react';
export type Props = {
    size?: 'small' | 'large';
    label: string;
    name: string;
    value: string;
    checked?: boolean;
    className?: string;
    isDisabled?: boolean;
    image?: string;
    hasImage?: boolean;
    inputType?: 'radio' | 'checkbox';
    onChange: (v: string) => void;
};
declare const SurveyRadio: ({ size, label, name, checked, value, className, isDisabled, onChange, hasImage, inputType, image, }: Props) => React.JSX.Element;
export { SurveyRadio };
