import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; interface ISharedBikesPricingPlanOutput { id: string; system_id: string; url: string | null; last_updated: string; name: string; currency: string; price: number; is_taxable: boolean; description: string; surge_pricing: boolean | null; [audit: string]: unknown; } export declare const pricingPlans: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { id: { type: string; }; system_id: { type: string; }; url: { type: string[]; }; last_updated: { type: string; }; name: { type: string; }; currency: { type: string; }; price: { type: string; }; is_taxable: { type: string; }; description: { type: string; }; surge_pricing: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesPricingPlanOutput };