import { BaseDuckDBType } from './BaseDuckDBType'; import { DuckDBTypeId } from '../DuckDBTypeId'; import { DuckDBTimeTZValue } from '../values'; export declare class DuckDBTimeTZType extends BaseDuckDBType { constructor(alias?: string); toString(): string; static readonly instance: DuckDBTimeTZType; static create(alias?: string): DuckDBTimeTZType; get max(): DuckDBTimeTZValue; get min(): DuckDBTimeTZValue; } export declare const TIMETZ: DuckDBTimeTZType;