import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; interface ISharedVehiclesStationStatusVehicleTypeOutput { station_id: string; vehicle_type_id: string; count: number | null; num_bikes_available: number; num_bikes_disabled: number | null; vehicle_docks_available: number | null; processed_at?: Date; [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 declare const stationStatusVehicleTypeWithSystemId: { name: string; outputSequelizeAttributes: ModelAttributes; pgTableName: string; }; export type { ISharedVehiclesStationStatusVehicleTypeOutput };