import { Base, Nullable$1, Type } from "igniteui-react-core";
import { ISupportSetProperty } from "./ISupportSetProperty";
import { ST_DdeValueType } from "./ST_DdeValueType";
import { XmlPartManagerBase } from "./XmlPartManagerBase";
import { ElementPropertyIds } from "./ElementPropertyIds";
/**
 * @hidden
 */
export declare class CT_DdeValue extends Base implements ISupportSetProperty {
    static $t: Type;
    constructor();
    d: string;
    b: Nullable$1<ST_DdeValueType>;
    static e(a: XmlPartManagerBase, b: Nullable$1<ST_DdeValueType>): {
        p1: Nullable$1<ST_DdeValueType>;
    };
    static f(a: XmlPartManagerBase, b: string, c?: Nullable$1<ST_DdeValueType>): void;
    setProperty(a: ElementPropertyIds, b: any): void;
    toString(): string;
}
