1 | import React from 'react';
|
2 | import { CheckboxPropsType } from './PropsType';
|
3 | export interface CheckboxProps extends CheckboxPropsType {
|
4 | prefixCls?: string;
|
5 | className?: string;
|
6 | name?: string;
|
7 | wrapLabel?: boolean;
|
8 | style?: React.CSSProperties;
|
9 | }
|
10 | export 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 | }
|