choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
14 lines (13 loc) • 476 B
TypeScript
/// <reference types="react" />
import PropTypes from 'prop-types';
import { AbstractCheckboxProps } from '../checkbox/Checkbox';
import { RadioChangeEvent } from './interface';
export declare type RadioButtonProps = AbstractCheckboxProps<RadioChangeEvent>;
declare const RadioButton: {
(props: RadioButtonProps, context: any): JSX.Element;
displayName: string;
contextTypes: {
radioGroup: PropTypes.Requireable<any>;
};
};
export default RadioButton;