export = Checkbox;
/**
 * Checkbox
 */
declare function Checkbox(options: any): Checkbox;
declare class Checkbox {
    /**
     * Checkbox
     */
    constructor(options: any);
    text: any;
    checked: any;
    value: any;
    __proto__: any;
    type: string;
    render(): any;
    check(): void;
    uncheck(): void;
    toggle(): void;
}
//# sourceMappingURL=checkbox.d.ts.map