import { ContentHint, JsType } from "../models/databaseSchema.model"; export declare enum PostgresBaseType { aclitem = "aclitem", bit = "bit", boolean = "boolean", box = "box", character = "character", bytea = "bytea", char = "char", cid = "cid", cidr = "cidr", circle = "circle", date = "date", real = "real", double_precision = "double precision", gtsvector = "gtsvector", inet = "inet", smallint = "smallint", int2vector = "int2vector", integer = "integer", bigint = "bigint", interval = "interval", json = "json", jsonb = "jsonb", jsonpath = "jsonpath", line = "line", lseg = "lseg", macaddr = "macaddr", macaddr8 = "macaddr8", money = "money", name = "name", numeric = "numeric", oid = "oid", oidvector = "oidvector", path = "path", point = "point", polygon = "polygon", refcursor = "refcursor", regclass = "regclass", regcollation = "regcollation", regconfig = "regconfig", regdictionary = "regdictionary", regnamespace = "regnamespace", regoper = "regoper", regoperator = "regoperator", regproc = "regproc", regprocedure = "regprocedure", regrole = "regrole", regtype = "regtype", text = "text", tid = "tid", time_without_time_zone = "time without time zone", timestamp_without_time_zone = "timestamp without time zone", timestamp_with_time_zone = "timestamp with time zone", time_with_time_zone = "time with time zone", tsquery = "tsquery", tsvector = "tsvector", txid_snapshot = "txid_snapshot", uuid = "uuid", bit_varying = "bit varying", character_varying = "character varying", xid = "xid", xid8 = "xid8", xml = "xml" } export declare const postgresBaseTypeToJsType: Record; export declare const postgresBaseTypeToArrayReturn: Record; export declare const postgresBaseTypesByContentHint: Record;