import { FormColorTypes, FormSizeTypes } from '../../../types/form-types';

declare const Radio: import('react').ForwardRefExoticComponent<Omit<import('react').InputHTMLAttributes<HTMLInputElement>, "size"> & {
    label?: string;
    checked?: boolean;
    disabled?: boolean;
    color?: FormColorTypes;
    size?: FormSizeTypes;
    required?: boolean;
    helperText?: string;
    error?: boolean;
    id?: string;
} & import('react').RefAttributes<HTMLInputElement>>;
export default Radio;
