import duckdb from '@duckdb/node-bindings'; import { DuckDBTimestampType } from '../DuckDBType'; import { DuckDBTimestampValue } from '../values'; import { DuckDBVector } from './DuckDBVector'; import { DuckDBValidity } from './DuckDBValidity'; export declare class DuckDBTimestampVector 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): DuckDBTimestampVector; get type(): DuckDBTimestampType; get itemCount(): number; getItem(itemIndex: number): DuckDBTimestampValue | null; setItem(itemIndex: number, value: DuckDBTimestampValue | null): void; flush(): void; slice(offset: number, length: number): DuckDBTimestampVector; }