import { IBaseTextValueAsHtml, IBaseTextValueAsString, IBaseTextValueAsXml } from "../type-specific-interfaces/base-text-value";
import { UpdateValue } from "./update-value";
/**
 * @category Model V2
 */
export declare class UpdateTextValueAsString extends UpdateValue implements IBaseTextValueAsString {
    text: string;
    constructor();
}
/**
 * @category Model V2
 */
export declare class UpdateTextValueAsXml extends UpdateValue implements IBaseTextValueAsXml {
    xml: string;
    mapping: string;
    constructor();
}
/**
 * @category Model V2
 */
export declare class UpdateTextValueAsHtml extends UpdateValue implements IBaseTextValueAsHtml {
    html: string;
    xml: string;
    constructor();
}
