import { CellValue } from './CellValue';
/**
 * A text description typically preceeding a UI component as a prompt
 */
export declare class LabelCellValue extends CellValue {
    readonly value: string;
    constructor(style: any, value: string);
}
