import { DynamicModule } from '@nestjs/common'; import { S as SoftDeleteModuleOptions } from '../soft-delete-options.interface-DKjxJO9E.js'; declare class TestSoftDeleteModule { static register(options: Partial & { softDeleteModels: string[]; }, prisma?: any): DynamicModule; } declare function expectSoftDeleted(modelDelegate: any, where: Record, deletedAtField?: string): Promise; declare function expectNotSoftDeleted(modelDelegate: any, where: Record, deletedAtField?: string): Promise; declare function expectCascadeSoftDeleted(prisma: any, parentModel: string, where: Record, childModels: string[], deletedAtField?: string): Promise; export { TestSoftDeleteModule, expectCascadeSoftDeleted, expectNotSoftDeleted, expectSoftDeleted };