UNPKG

439 BTypeScriptView Raw
1import React from 'react';
2import { RadioItemPropsType } from './PropsType';
3export interface RadioItemProps extends RadioItemPropsType {
4 prefixCls?: string;
5 listPrefixCls?: string;
6 className?: string;
7}
8export default class RadioItem extends React.Component<RadioItemProps, any> {
9 static defaultProps: {
10 prefixCls: string;
11 listPrefixCls: string;
12 radioProps: {};
13 };
14 render(): JSX.Element;
15}