import { IPayment } from "./interfaces/IPayment"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IParkingProhibitions } from "./interfaces/IParkingProhibitions"; export declare class ParkingProhibitionsModel extends Model implements IPayment { static tableName: string; parking_id: string; source: string; lpg: boolean | null; bus: boolean | null; truck: boolean | null; motorcycle: boolean | null; bicycle: boolean | null; trailer: boolean | null; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; static attributeUpdateList: string[]; }