import { IgcCellInfo } from "./igc-cell-info";
import { TemplateCellModel as TemplateCellModel_internal } from "./TemplateCellModel";
/**
 * Represents backing information for a template cell.
*/
export declare class IgcTemplateCellInfo extends IgcCellInfo {
    protected createImplementation(): TemplateCellModel_internal;
    /**
                                 * @hidden
                                 */
    get i(): TemplateCellModel_internal;
    constructor();
    /**
     * Sets or gets the value to provide to the template.
    */
    get value(): any;
    set value(v: any);
}
