import { Point } from "@golemio/core/dist/shared/geojson"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { IParkingMachine } from "./interfaces/IParkingMachine"; export declare class ParkingMachinesModel extends Model implements IParkingMachine { static tableName: string; id: string; source: string; sourceId: string; code: string; type: string; location: Point; validFrom: Date; active: boolean; static attributeModel: ModelAttributes; static attributeList: string[]; static jsonSchema: JSONSchemaType; }