import React from "react";
interface CheckBoxProps {
    /** checkbox后跟随的文本 */
    label: string;
    /** 是否禁用 */
    disabled?: boolean;
    /** 设置 indeterminate 状态，只负责样式控制 */
    indeterminate?: boolean;
    /** 默认选中状态 */
    defaultChecked?: boolean;
    /** 变化时回调函数, 当被CheckBoxGroup包裹时此onChange失效 */
    onChange?: (label: string, checked: boolean) => void;
    className?: string;
    style?: React.CSSProperties;
}
declare const CheckBox: React.FC<CheckBoxProps>;
export default CheckBox;
