import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { MultiPolygon } from "geojson"; interface ISharedBikesGeofencingZoneOutput { id: string; system_id: string; name: string | null; note: string | null; source: string | null; price: number | null; priority: number; start: Date | null; end: Date | null; geom: MultiPolygon; ride_allowed: boolean; ride_through_allowed: boolean; maximum_speed_kph: number | null; parking_allowed: boolean; [audit: string]: unknown; } export declare const geofencingZones: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { id: { type: string; }; system_id: { type: string; }; name: { type: string[]; }; note: { type: string[]; }; source: { type: string[]; }; price: { type: string[]; }; priority: { type: string[]; }; start: { type: string[]; }; end: { type: string[]; }; geom: { type: string; }; ride_allowed: { type: string; }; ride_through_allowed: { type: string; }; parking_allowed: { type: string; }; maximum_speed_kph: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesGeofencingZoneOutput };