import { ModelAttributes, WhereGeometryOptions } from "@golemio/core/dist/shared/sequelize"; import { Point } from "geojson"; interface ISharedBikesStationInformationOutput { id: string; system_id: string; name: string; short_name?: string | null; point: Point; address: string | null; post_code: string | null; cross_street: string | null; region_id: string | null; rental_methods: string | null; is_virtual_station: boolean | null; station_area: WhereGeometryOptions | null; capacity: number | null; vehicle_capacity: number | null; vehicle_type_capacity: string | null; is_valet_station: boolean | null; rental_app_id: string | null; [audit: string]: unknown; } export declare const stationInformation: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { id: { type: string; }; system_id: { type: string; }; name: { type: string; }; short_name: { type: string[]; }; point: { type: string; }; address: { type: string[]; }; post_code: { type: string[]; }; cross_street: { type: string[]; }; region_id: { type: string[]; }; rental_methods: { type: string[]; }; is_virtual_station: { type: string[]; }; station_area: { type: string[]; }; capacity: { type: string[]; }; vehicle_capacity: { type: string[]; }; vehicle_type_capacity: { type: string[]; }; is_valet_station: { type: string[]; }; rental_app_id: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesStationInformationOutput };