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