/**
 * The response from an update many operation.
 */
export interface UpdateManyResponse {
    /**
     * The number of records deleted.
     */
    updatedCount: number;
}
