import type { ColumnBuilderBaseConfig } from "../../column-builder.cjs"; import type { ColumnBaseConfig } from "../../column.cjs"; import { entityKind } from "../../entity.cjs"; import { PgColumn, PgColumnBuilder } from "./common.cjs"; 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']); } export declare class PgBoolean> extends PgColumn { static readonly [entityKind]: string; getSQLType(): string; } export declare function boolean(): PgBooleanBuilderInitial<''>; export declare function boolean(name: TName): PgBooleanBuilderInitial;