import { ExprType } from "../type/ExprType.js";
import { Value } from "./Value.js";
export declare class ContextObjectValue implements Value<Record<string, unknown>> {
    private readonly contextObjectValue;
    private readonly type;
    constructor(value: Record<string, unknown>, type: ExprType);
    getValue(): Record<string, unknown>;
    equals(other: Value<any>): boolean;
    toString(): string;
    getType(): ExprType;
}
