export declare type MysqlInt = "integer" | "int" | "tinyint" | "smallint" | "mediumint" | "bigint"; export declare type MysqlReal = "float" | "double" | "real" | "double precision"; export declare type MysqlDecimal = "decimal" | "numeric"; export declare type MysqlDate = "date"; export declare type MysqlDateTime = "datetime" | "timestamp"; export declare type MysqlTime = "time"; export declare type MysqlInterval = "year"; export declare type MysqlRowVersion = "timestamp"; export declare type MysqlBinary = "tinyblob" | "mediumblob" | "blob" | "longblob" | "binary" | "varbinary"; export declare type MysqlString = "character" | "varchar" | "char" | "tinytext" | "mediumtext" | "text" | "longtext"; export declare type MysqlBoolean = "bit"; export declare type MysqlSpatial = "geometry" | "point" | "linestring" | "polygon" | "multipoint" | "multilinestring" | "multipolygon" | "geomertycollection"; export declare type MysqlIdentifier = "binary"; export declare type MysqlSerialize = "json"; export declare type MysqlEnum = "enum"; export declare type MysqlColumnType = MysqlInt | MysqlDecimal | MysqlReal | MysqlDate | MysqlDateTime | MysqlTime | MysqlInterval | MysqlRowVersion | MysqlBinary | MysqlString | MysqlBoolean | MysqlSpatial | MysqlIdentifier | MysqlSerialize | MysqlEnum;