UNPKG

oui-antd

Version:

An enterprise-class UI design language and React-based implementation

15 lines (14 loc) 517 B
import * as React from 'react'; import * as PropTypes from 'prop-types'; import { AbstractCheckboxProps } from '../checkbox/Checkbox'; import { RadioChangeEvent } from './interface'; export declare type RadioButtonProps = AbstractCheckboxProps<RadioChangeEvent>; export default class RadioButton extends React.Component<RadioButtonProps, any> { static defaultProps: { prefixCls: string; }; static contextTypes: { radioGroup: PropTypes.Requireable<any>; }; render(): JSX.Element; }