import type { ColumnBuilderBaseConfig } from "../../column-builder.js"; import type { ColumnBaseConfig } from "../../column.js"; import { entityKind } from "../../entity.js"; import type { AnyGelTable } from "../table.js"; import { GelColumn } from "./common.js"; import { GelLocalDateColumnBaseBuilder } from "./date.common.js"; export type GelTimestampTzBuilderInitial = GelTimestampTzBuilder<{ name: TName; dataType: 'date'; columnType: 'GelTimestampTz'; data: Date; driverParam: Date; enumValues: undefined; }>; export declare class GelTimestampTzBuilder> extends GelLocalDateColumnBaseBuilder { static readonly [entityKind]: string; constructor(name: T['name']); } export declare class GelTimestampTz> extends GelColumn { static readonly [entityKind]: string; constructor(table: AnyGelTable<{ name: T['tableName']; }>, config: GelTimestampTzBuilder['config']); getSQLType(): string; } export declare function timestamptz(): GelTimestampTzBuilderInitial<''>; export declare function timestamptz(name: TName): GelTimestampTzBuilderInitial;