import { GridOptions } from "../types";
import { CellTransformer } from "..";
import { CellTransformerParams } from "./cell";
export declare class Transformer extends CellTransformer {
    protected prefix: string;
    constructor(prefix?: string);
    format(params: CellTransformerParams): string;
    parse(params: CellTransformerParams): any;
}
export declare const data: GridOptions;
export default data;
