import { SqlEntityManager } from "@medusajs/deps/mikro-orm/postgresql"; /** * Updates the deleted_at field for all entities in the given array and their * cascaded relations and returns a map of entity IDs to their corresponding * entity types. * * @param manager - The Mikro ORM manager instance. * @param entities - An array of entities to update. * @param value - The value to set for the deleted_at field. * @returns A map of entity IDs to their corresponding entity types. */ export declare const mikroOrmUpdateDeletedAtRecursively: (manager: SqlEntityManager, entities: (T & { id: string; deleted_at?: string | Date | null; })[], value: Date | null) => Promise>; //# sourceMappingURL=utils.d.ts.map