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<IParkingProhibitions> 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<ParkingProhibitionsModel>;
    static jsonSchema: JSONSchemaType<IParkingProhibitions[]>;
    static attributeUpdateList: string[];
}
