export interface VectorOptions { id?: Uint8Array | string; } export declare class Vector { private readonly vectorId; constructor(options?: VectorOptions); static fromArray(values: U[], options?: VectorOptions): Vector; id(): string; idBytes(): Uint8Array; push(value: T): void; get(index: number): T | null; len(): number; pop(): T | null; toArray(): T[]; toJSON(): Record; } //# sourceMappingURL=Vector.d.ts.map