import React from 'react'; export interface RadioProps { isChecked?: boolean; isDisabled?: boolean; size?: 'medium' | 'small'; onClick?: (e: React.SyntheticEvent) => void; } export declare const Radio: React.FC;