import type { LocalDateTime } from 'gel'; 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 GelTimestampBuilderInitial = GelTimestampBuilder<{ name: TName; dataType: 'localDateTime'; columnType: 'GelTimestamp'; data: LocalDateTime; driverParam: LocalDateTime; enumValues: undefined; }>; export declare class GelTimestampBuilder> extends GelLocalDateColumnBaseBuilder { static readonly [entityKind]: string; constructor(name: T['name']); } export declare class GelTimestamp> extends GelColumn { static readonly [entityKind]: string; constructor(table: AnyGelTable<{ name: T['tableName']; }>, config: GelTimestampBuilder['config']); getSQLType(): string; } export declare function timestamp(): GelTimestampBuilderInitial<''>; export declare function timestamp(name: TName): GelTimestampBuilderInitial;