import { JsonDictionaryItem } from "./JsonDictionaryItem";
import { Type } from "./type";
import { JsonDictionaryValueType } from "./JsonDictionaryValueType";
import { JsonWriter } from "./JsonWriter";
/**
 * @hidden
 */
export declare class JsonDictionaryValue extends JsonDictionaryItem {
    static $t: Type;
    constructor();
    private _value;
    get value(): any;
    set value(a: any);
    e: JsonDictionaryValueType;
    d(a: JsonWriter): void;
}
