import { BaseDuckDBType } from './BaseDuckDBType'; import { DuckDBTypeId } from '../DuckDBTypeId'; import { DuckDBTimestampNanosecondsValue } from '../values'; export declare class DuckDBTimestampNanosecondsType extends BaseDuckDBType { constructor(alias?: string); static readonly instance: DuckDBTimestampNanosecondsType; static create(alias?: string): DuckDBTimestampNanosecondsType; get epoch(): DuckDBTimestampNanosecondsValue; get max(): DuckDBTimestampNanosecondsValue; get min(): DuckDBTimestampNanosecondsValue; get posInf(): DuckDBTimestampNanosecondsValue; get negInf(): DuckDBTimestampNanosecondsValue; } export declare const TIMESTAMP_NS: DuckDBTimestampNanosecondsType;