import { CellTransformer, CellTransformerParams } from "../../grid/cell";
export declare class BooleanTransformer extends CellTransformer {
format(params: CellTransformerParams): string;
parse(params: CellTransformerParams): any;
}
export default BooleanTransformer;