UNPKG

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