import { Base, Type } from "igniteui-webcomponents-core";
import { ICellPresenter } from "./ICellPresenter";
import { INativeCell } from "./INativeCell";
import { GridCellBase } from "./GridCellBase";
import { CellModel } from "./CellModel";
/**
 * @hidden
 */
export declare class CellPresenterBase extends Base implements ICellPresenter {
    static $t: Type;
    a: GridCellBase;
    constructor(a: GridCellBase);
    modelUpdated(a: CellModel): void;
    protected b(a: CellModel): void;
    private c;
    get nativeCell(): INativeCell;
    get isCanvasBased(): boolean;
}
