import { type Column, JsonColumn } from '../core/Column.js'; export declare function id(name?: string): Column; export declare function text(name?: string): Column; export declare function varchar(name?: string, options?: { length: number; }): Column; export declare function integer(name?: string): Column; export declare function number(name?: string): Column; export declare function boolean(name?: string): Column; export declare function json(name?: string): JsonColumn; export declare function jsonb(name?: string): JsonColumn; export declare function blob(name?: string): Column;