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, GelColumnBuilder } from "./common.js"; export type GelJsonBuilderInitial = GelJsonBuilder<{ name: TName; dataType: 'json'; columnType: 'GelJson'; data: unknown; driverParam: unknown; enumValues: undefined; }>; export declare class GelJsonBuilder> extends GelColumnBuilder { static readonly [entityKind]: string; constructor(name: T['name']); } export declare class GelJson> extends GelColumn { static readonly [entityKind]: string; constructor(table: AnyGelTable<{ name: T['tableName']; }>, config: GelJsonBuilder['config']); getSQLType(): string; } export declare function json(): GelJsonBuilderInitial<''>; export declare function json(name: TName): GelJsonBuilderInitial;