import { CellPresenterBase } from "./CellPresenterBase";
import { TemplateCell } from "./TemplateCell";
import { GridCellBase } from "./GridCellBase";
import { DataGrid } from "./DataGrid";
import { CellModel } from "./CellModel";
import { Type } from "igniteui-webcomponents-core";
/**
 * @hidden
 */
export declare class TemplateCellPresenter extends CellPresenterBase {
    static $t: Type;
    private d;
    constructor(a: GridCellBase, b: DataGrid);
    get e(): TemplateCell;
    protected b(a: CellModel): void;
}
