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