UNPKG

ant-table-ext

Version:

An extended table based on ant table

14 lines (13 loc) 414 B
/// <reference types="react" /> import React from 'react'; import { AbstractCheckboxProps } from '../checkbox/Checkbox'; export declare type RadioButtonProps = AbstractCheckboxProps; export default class RadioButton extends React.Component<RadioButtonProps, any> { static defaultProps: { prefixCls: string; }; static contextTypes: { radioGroup: any; }; render(): JSX.Element; }