import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; interface ISharedBikesVehicleTypeOutput { id: string; form_factor: string | null; propulsion_type: string | null; max_range_meters: number | null; name: string | null; [audit: string]: unknown; } export declare const vehicleTypes: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { id: { type: string; }; form_factor: { type: string; }; propulsion_type: { type: string; }; max_range_meters: { type: string[]; }; name: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesVehicleTypeOutput };