declare class ObjectValue { private readonly obj; constructor(object?: object); add(name: string, value: Value): this; remove(name: string): this; toObject(): Object; static of(obj?: object): ObjectValue; } export default ObjectValue;