export declare enum DataTypeName { SMALLINT = "smallint",// 2 bytes INT = "int",// 4 bytes BIGINT = "bigint",// 8 bytes SMALLSERIAL = "smallserial",// 2 bytes SERIAL = "serial",// 4 bytes BIGSERIAL = "bigserial",// 8 bytes NUMERIC = "numeric", DECIMAL = "decimal",// alias for numeric REAL = "real", DOUBLE_PRECISION = "double precision", CHAR = "char", VARCHAR = "varchar", TEXT = "text", BYTEA = "bytea",// variable length binary string TIMESTAMP = "timestamp", TIMESTAMPTZ = "timestamp with time zone", TIME = "time", DATE = "date", BOOLEAN = "boolean", UUID = "uuid" } export declare enum Constraint { FOREIGN_KEY = "FOREIGN_KEY" }