export interface CheckboxProps {
    style?: {};
    defaultChecked?: boolean;
    checked?: boolean;
    disabled?: boolean;
    onChange?: Function;
}
export interface CheckboxItemProps extends CheckboxProps {
    children?: any;
    extra?: any;
    onClick?: () => any;
    checkboxProps?: Object;
}
export interface AgreeItemPropsType extends CheckboxProps {
    children?: any;
}
