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