UNPKG

439 BTypeScriptView Raw
1import React from 'react';
2import { CheckboxPropsType } from './PropsType';
3export interface AgreeItemPropsType extends CheckboxPropsType {
4 prefixCls?: string;
5 className?: string;
6 name?: string;
7 wrapLabel?: boolean;
8 style?: React.CSSProperties;
9}
10export default class AgreeItem extends React.Component<AgreeItemPropsType, any> {
11 static defaultProps: {
12 prefixCls: string;
13 };
14 render(): JSX.Element;
15}