import { IBaseTextValueAsString, IBaseTextValueAsXml } from "../type-specific-interfaces/base-text-value";
import { CreateValue } from "./create-value";
/**
 * @category Model V2
 */
export declare class CreateTextValueAsString extends CreateValue implements IBaseTextValueAsString {
    text: string;
    constructor();
}
/**
 * @category Model V2
 */
export declare class CreateTextValueAsXml extends CreateValue implements IBaseTextValueAsXml {
    xml: string;
    mapping: string;
    constructor();
}
