"use strict";
class Props {
    constructor() {
        this.checked = null;
        this.defaultChecked = null;
        this.onChange = () => {
        };
        this.size = 'normal';
        this.type = 'info';
        this.checkedChildrenRender = () => {
        };
        this.unCheckedChildrenRender = () => {
        };
    }
}
exports.Props = Props;
class State {
    constructor() {
        this.checked = false;
    }
}
exports.State = State;
