import * as React from 'react'; import { RadioSelfPropsType } from './PropsType'; import './style/index.less'; export interface RadioSelfProps extends RadioSelfPropsType { prefixCls?: string; listPrefixCls?: string; className?: string; style?: React.CSSProperties; } declare function RadioSelf(props: RadioSelfProps): JSX.Element; declare namespace RadioSelf { var defaultProps: { prefixCls: string; wrapLabel: boolean; hideBottomLine: boolean; customeStyle: boolean; }; } export default RadioSelf;