import { IPayment } from "../../schema-definitions/models/interfaces/IPayment"; import { IModel, PostgresModel } from "@golemio/core/dist/integration-engine"; export declare class ParkingPaymentsRepository extends PostgresModel implements IModel { constructor(); updatePaymentsBySource(payments: IPayment[], source: string, processingDate: Date): Promise; }