/// import './style.less'; import { CheckBoxPropsType } from './PropsType'; export type CheckBoxProps = CheckBoxPropsType; declare function CheckBox(props: CheckBoxPropsType): JSX.Element; declare namespace CheckBox { var defaultProps: { checkedImageLeft: any; uncheckedImageLeft: any; disabledCheckedImageLeft: any; disabledUncheckedImageLeft: any; checkedImageRight: any; uncheckedImageRight: any; disabledCheckedImageRight: any; disabledUncheckedImageRight: any; checkedImageAgreement: any; uncheckedImageAgreement: any; label: string; isChecked: boolean; checked: any; labelBefore: boolean; disabled: boolean; hasIcon: boolean; color: string; fontSize: number; type: string; isChange: boolean; widthFlag: string; }; } export default CheckBox;