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 } from './common.js'; import { PgIntColumnBaseBuilder } from './int.common.js'; export type PgSmallIntBuilderInitial = PgSmallIntBuilder<{ name: TName; dataType: 'number'; columnType: 'PgSmallInt'; data: number; driverParam: number | string; enumValues: undefined; }>; export declare class PgSmallIntBuilder> extends PgIntColumnBaseBuilder { static readonly [entityKind]: string; constructor(name: T['name']); /** @internal */ build(table: AnyPgTable<{ name: TTableName; }>): PgSmallInt>; } export declare class PgSmallInt> extends PgColumn { static readonly [entityKind]: string; getSQLType(): string; mapFromDriverValue: (value: number | string) => number; } export declare function smallint(): PgSmallIntBuilderInitial<''>; export declare function smallint(name: TName): PgSmallIntBuilderInitial; //# sourceMappingURL=smallint.d.ts.map