import { Class, Filter } from '@ptc-org/nestjs-query-core'; export interface UpdateManyInputType { filter: Filter; update: U; } /** * Input abstract type for all update many endpoints. * @param DTOClass - The DTO used to create a FilterType for the update. * @param UpdateType - The InputType to use for the update field. */ export declare function UpdateManyInputType(DTOClass: Class, UpdateType: Class): Class>;