/// <reference types="react" />
import { MarginType, TypographyType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
import { RADIO_OPTION } from './options';
export interface IRadioProps extends InputType, MarginType {
    size?: keyof typeof RADIO_OPTION;
    label?: string;
    textType?: TypographyType;
    handleChecked?: (checked: boolean) => void;
}
declare const Radio: import("react").ForwardRefExoticComponent<IRadioProps & import("react").RefAttributes<HTMLInputElement>>;
export default Radio;
