import duckdb from '@duckdb/node-bindings'; import { DuckDBTimestampMillisecondsType } from '../DuckDBType'; import { DuckDBTimestampMillisecondsValue } from '../values'; import { DuckDBVector } from './DuckDBVector'; import { DuckDBValidity } from './DuckDBValidity'; export declare class DuckDBTimestampMillisecondsVector extends DuckDBVector { private readonly items; private readonly validity; private readonly vector; constructor(items: BigInt64Array, validity: DuckDBValidity, vector: duckdb.Vector); static fromRawVector(vector: duckdb.Vector, itemCount: number): DuckDBTimestampMillisecondsVector; get type(): DuckDBTimestampMillisecondsType; get itemCount(): number; getItem(itemIndex: number): DuckDBTimestampMillisecondsValue | null; setItem(itemIndex: number, value: DuckDBTimestampMillisecondsValue | null): void; flush(): void; slice(offset: number, length: number): DuckDBTimestampMillisecondsVector; }