import { ColumnOptions } from "../../types";
import { Grid } from "../../index";
export interface CellTransformerParams {
    oldValue?: any;
    value: any;
    column: ColumnOptions;
    gird: Grid;
}
export declare abstract class CellTransformer {
    abstract format(params: CellTransformerParams): string;
    abstract parse(params: CellTransformerParams): any;
}
export default CellTransformer;
