export declare type SqliteInt = "integer"; export declare type SqliteReal = "real"; export declare type SqliteDecimal = "numeric"; export declare type SqliteDate = "text"; export declare type SqliteDateTime = "text"; export declare type SqliteTime = "text"; export declare type SqliteRowVersion = "text"; export declare type SqliteBinary = "blob"; export declare type SqliteString = "text"; export declare type SqliteBoolean = "integer"; export declare type SqliteSpacial = "text"; export declare type SqliteIdentifier = "text"; export declare type SqliteSerialize = "text"; export declare type SqliteEnum = "text"; export declare type SqliteColumnType = SqliteInt | SqliteDecimal | SqliteReal | SqliteDate | SqliteDateTime | SqliteTime | SqliteRowVersion | SqliteBinary | SqliteString | SqliteBoolean | SqliteSpacial | SqliteIdentifier | SqliteSerialize | SqliteEnum;