import { IBusinessError } from "../../schema-definitions/models/interfaces/IBusinessError";
import { IModel } from "@golemio/core/dist/integration-engine/models/IModel";
import { PostgresModel } from "@golemio/core/dist/integration-engine/models/PostgresModel";
export declare class ParkingsBusinessErrorsRepository extends PostgresModel implements IModel {
    constructor();
    save: (errors: IBusinessError[]) => Promise<void>;
}
