import { IDatabaseConnector } from "@golemio/core/dist/helpers/data-access/postgres/IDatabaseConnector"; import { PostgresModel } from "@golemio/core/dist/integration-engine"; import { IModel } from "@golemio/core/dist/integration-engine/models"; import { Transaction } from "@golemio/core/dist/shared/sequelize"; export declare class VpalaceMeasurementRepository extends PostgresModel implements IModel { private databaseConnector; constructor(databaseConnector: IDatabaseConnector); saveBulk: (data: any, t: Transaction) => Promise; }