import { Value } from "./Value.js"; import { ExprType } from "../type/ExprType.js"; export declare class ArrayValue implements Value>> { private readonly arrayValue; constructor(value: Array>); static of(value: Array>): ArrayValue; getValue(): Array>; getType(): ExprType; equals(other: Value): boolean; toString(): string; static isArrayValueType(arg: any): arg is ArrayValueType; } export type ArrayValueType = { arrayValue: Array>; };