import { FC } from 'react'; import { IRadioButtonProps as IRadioButtonTouchPhoneProps } from '../../RadioButton@touch-phone'; export * from '../../RadioButton@touch-phone'; export interface IRadioButtonProps extends IRadioButtonTouchPhoneProps { size?: 's' | 'm' | 'l'; view?: 'default'; } export declare const RadioButton: FC;