import type { ColumnBuilderBaseConfig, MakeColumnConfig } from '../../column-builder.js'; import type { ColumnBaseConfig } from '../../column.js'; import { entityKind } from '../../entity.js'; import type { AnyPgTable } from '../table.js'; import { PgColumn, PgColumnBuilder } from './common.js'; export type PgBooleanBuilderInitial = PgBooleanBuilder<{ name: TName; dataType: 'boolean'; columnType: 'PgBoolean'; data: boolean; driverParam: boolean; enumValues: undefined; }>; export declare class PgBooleanBuilder> extends PgColumnBuilder { static readonly [entityKind]: string; constructor(name: T['name']); /** @internal */ build(table: AnyPgTable<{ name: TTableName; }>): PgBoolean>; } export declare class PgBoolean> extends PgColumn { static readonly [entityKind]: string; getSQLType(): string; } export declare function boolean(): PgBooleanBuilderInitial<''>; export declare function boolean(name: TName): PgBooleanBuilderInitial; //# sourceMappingURL=boolean.d.ts.map