import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; interface ISharedBikesSystemInformationOutput { operator_id: string; system_id: string; language: string; logo: string; name: string; short_name: string | null; operator: string | null; url: string | null; purchase_url: string | null; start_date: Date | null; phone_number: string | null; email: string | null; feed_contact_email: string | null; timezone: string; license_id: string | null; license_url: string | null; attribution_organization_name: string | null; attribution_url: string | null; terms_of_use_url: string | null; rental_app_id: string | null; [audit: string]: unknown; } export declare const systemInformation: { name: string; outputSequelizeAttributes: ModelAttributes; outputJsonSchema: { type: string; items: { type: string; properties: { operator_id: { type: string; }; system_id: { type: string; }; language: { type: string; }; logo: { type: string; }; name: { type: string; }; short_name: { type: string[]; }; operator: { type: string[]; }; url: { type: string[]; }; purchase_url: { type: string[]; }; start_date: { type: string[]; }; phone_number: { type: string[]; }; email: { type: string[]; }; feed_contact_email: { type: string[]; }; timezone: { type: string; }; license_id: { type: string[]; }; license_url: { type: string[]; }; attribution_organization_name: { type: string[]; }; attribution_url: { type: string[]; }; terms_of_use_url: { type: string[]; }; rental_app_id: { type: string[]; }; }; }; }; pgTableName: string; }; export type { ISharedBikesSystemInformationOutput };