import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; interface ISharedBikesPricingOutput { id: string; pricing_plan_id: string; pricing_type: string; pricing_order: number | null; start: number; rate: number; interval: number; end: number | null; start_time_of_period: string | null; end_time_of_period: string | null; [audit: string]: unknown; } export declare const pricings: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { pricing_plan_id: { type: string; max: number; }; pricing_type: { type: string; }; pricing_order: { type: string[]; }; start: { type: string; }; rate: { type: string; }; interval: { type: string; }; end: { type: string[]; }; start_time_of_period: { type: string[]; }; end_time_of_period: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesPricingOutput };