import type { ColumnBuilderBaseConfig, HasDefault, MakeColumnConfig, NotNull } 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 PgSmallSerialBuilderInitial = NotNull>>; export declare class PgSmallSerialBuilder> extends PgColumnBuilder { static readonly [entityKind]: string; constructor(name: T['name']); /** @internal */ build(table: AnyPgTable<{ name: TTableName; }>): PgSmallSerial>; } export declare class PgSmallSerial> extends PgColumn { static readonly [entityKind]: string; getSQLType(): string; } export declare function smallserial(): PgSmallSerialBuilderInitial<''>; export declare function smallserial(name: TName): PgSmallSerialBuilderInitial; //# sourceMappingURL=smallserial.d.ts.map