import { CellEditor, CellEditorParams } from "../../grid/cell";
export declare class CheckboxEditor extends CellEditor<{}> {
    protected wrapper: HTMLDivElement;
    protected checkbox: HTMLDivElement;
    protected mark: HTMLSpanElement;
    protected value: boolean;
    init(param: CellEditorParams<{}>): void;
    protected setValue(value: boolean): void;
    gui(): HTMLElement;
    getValue(): any;
}
export default CheckboxEditor;
