import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { Point } from "geojson"; interface ISharedBikesBikeStatusOutput { id: string; system_id: string; point: Point; helmets: number | null; passengers: number | null; damage_description: string | null; description: string | null; vehicle_registration: string | null; is_reserved: boolean; is_disabled: boolean; vehicle_type_id: string; last_reported: string; current_range_meters: number | null; charge_percent: number | null; rental_app_id: string | null; station_id: string | null; pricing_plan_id: string | null; make: string | null; model: string | null; color: string | null; [audit: string]: unknown; } export declare const bikeStatus: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { id: { type: string; }; system_id: { type: string; }; point: { type: string[]; }; helmets: { type: string[]; }; passengers: { type: string[]; }; damage_description: { type: string[]; }; description: { type: string[]; }; vehicle_registration: { type: string[]; }; is_reserved: { type: string; }; is_disabled: { type: string; }; vehicle_type_id: { type: string; }; last_reported: { type: string[]; }; current_range_meters: { type: string[]; }; charge_percent: { type: string[]; }; rental_app_id: { type: string[]; }; station_id: { type: string[]; }; pricing_plan_id: { type: string[]; }; make: { type: string[]; }; model: { type: string[]; }; color: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesBikeStatusOutput };