import { CellValue } from './CellValue';
/**
 * A text template containing substitution parameters that is instantiated at presentation time and filled with business values.
 */
export declare class SubstitutionCellValue extends CellValue {
    readonly value: string;
    constructor(style: any, value: string);
}
