import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; interface ISharedBikesRentalAppOutput { id: string; android_store_url: string | null; android_discovery_url: string | null; ios_store_url: string | null; ios_discovery_url: string | null; web_url: string | null; [audit: string]: unknown; } export declare const rentalApps: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { id: { type: string; }; android_store_url: { type: string[]; }; android_discovery_url: { type: string[]; }; ios_store_url: { type: string[]; }; ios_discovery_url: { type: string[]; }; web_url: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesRentalAppOutput };