import React from 'react'; export interface RadioProps extends React.HTMLAttributes { /** * Set the size of radio */ size?: 'medium' | 'small' | 'large'; } export declare const Radio: React.FC;