UNPKG

457 BTypeScriptView Raw
1import * as React from 'react';
2import { RadioPropsType } from './PropsType';
3export interface RadioProps extends RadioPropsType {
4 prefixCls?: string;
5 listPrefixCls?: string;
6 className?: string;
7 style?: React.CSSProperties;
8}
9export default class Radio extends React.Component<RadioProps, any> {
10 static RadioItem: any;
11 static defaultProps: {
12 prefixCls: string;
13 wrapLabel: boolean;
14 };
15 render(): JSX.Element;
16}