import { Ctx } from "../../ctx"; import { Core } from "../../core"; import { Value } from "../../value"; export declare class ObjValue extends Value { properties: Map; constructor(properties: Map); readback(ctx: Ctx, t: Value): Core | undefined; dot_value(name: string): Value; }