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 GelRealBuilderInitial = GelRealBuilder<{ name: TName; dataType: 'number'; columnType: 'GelReal'; data: number; driverParam: number; enumValues: undefined; }>; export declare class GelRealBuilder> extends GelColumnBuilder { static readonly [entityKind]: string; constructor(name: T['name'], length?: number); } export declare class GelReal> extends GelColumn { static readonly [entityKind]: string; constructor(table: AnyGelTable<{ name: T['tableName']; }>, config: GelRealBuilder['config']); getSQLType(): string; } export declare function real(): GelRealBuilderInitial<''>; export declare function real(name: TName): GelRealBuilderInitial;