import { RadioButtonProps } from 'antd/es/radio/radioButton';
import { FC } from 'react';
import { RADIO_BUTTON } from '../../../Types';
export interface IRadioButton {
    ctype: typeof RADIO_BUTTON;
    props: RadioButtonProps;
}
declare const RadioButton: FC<IRadioButton>;
export default RadioButton;
