import { Ctx } from "../../ctx"; import { Core } from "../../core"; import { Value } from "../../value"; import { Solution } from "../../solution"; export declare class VectorValue extends Value { elem_t: Value; length: Value; constructor(elem_t: Value, length: Value); readback(ctx: Ctx, t: Value): Core | undefined; unify(solution: Solution, that: Value): Solution; }