import { Geo, SingleGeo } from "./Geo"; export type Int = number; export type Uint = number; export type Double

= number; export type Float

= number; export type String = string; export type Text = string; export type Image = string; export type File = string; export type Datetime = number | Date; export type Boolean = boolean; export type PrimaryKey = string; export type ForeignKey = string; export type Sequence = string; export { Geo, SingleGeo } from './Geo'; export type DataTypes = number | string | Datetime | Geo | Object | SingleGeo; export declare const types: string[]; export declare const unIndexedTypes: string[];