import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; interface ISharedBikesStationStatusOutput { station_id: string; num_bikes_available: number; num_bikes_disabled: number | null; num_docks_available: number | null; is_installed: boolean | null; is_renting: boolean | null; is_returning: boolean | null; last_reported: string | null; [audit: string]: unknown; } export declare const stationStatus: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { station_id: { type: string; }; num_bikes_available: { type: string[]; }; num_bikes_disabled: { type: string[]; }; num_docks_available: { type: string[]; }; is_installed: { type: string[]; }; is_renting: { type: string[]; }; is_returning: { type: string[]; }; last_reported: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesStationStatusOutput };