import { Core, AlphaCtx } from "../../core"; import { Env } from "../../env"; import { Value } from "../../value"; export declare class VectorCore extends Core { elem_t: Core; length: Core; constructor(elem_t: Core, length: Core); evaluate(env: Env): Value; repr(): string; alpha_repr(ctx: AlphaCtx): string; }