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