import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; interface ISharedBikesStationStatusVehicleTypeOutput { station_id: string; vehicle_type_id: string; count: number | null; num_bikes_available: number; num_bikes_disabled: number | null; vehicle_docks_available: number | null; [audit: string]: unknown; } export declare const stationsStatusVehicleType: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { station_id: { type: string; }; vehicle_type_id: { type: string; }; count: { type: string[]; }; num_bikes_available: { type: string; }; num_bikes_disabled: { type: string[]; }; vehicle_docks_available: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesStationStatusVehicleTypeOutput };