import { Type, TypedValue } from "./types"; export declare class ArrayVecType extends Type { static ClassName: string; readonly length: number; constructor(length: number, typeParameter: Type); getClassName(): string; } export declare class ArrayVec extends TypedValue { static ClassName: string; private readonly backingCollection; constructor(type: ArrayVecType, items: TypedValue[]); getClassName(): string; getLength(): number; getItems(): ReadonlyArray; valueOf(): any[]; equals(other: ArrayVec): boolean; }