import { BaseDuckDBType } from './BaseDuckDBType'; import { DuckDBTypeId } from '../DuckDBTypeId'; import { DuckDBTimestampValue } from '../values'; export declare class DuckDBTimestampType extends BaseDuckDBType { constructor(alias?: string); static readonly instance: DuckDBTimestampType; static create(alias?: string): DuckDBTimestampType; get epoch(): DuckDBTimestampValue; get max(): DuckDBTimestampValue; get min(): DuckDBTimestampValue; get posInf(): DuckDBTimestampValue; get negInf(): DuckDBTimestampValue; } export declare const TIMESTAMP: DuckDBTimestampType; export type DuckDBTimestampMicrosecondsType = DuckDBTimestampType; export declare const DuckDBTimestampMicrosecondsType: typeof DuckDBTimestampType;