Do the child jobs in a BatchJob.StartNew get seen by other distributed Worker Processes?

We would like install Hangfire Pro on multiple servers to distribute the processing on each server. They would all target the same SQL queue, so if we say BatchJob.StartNew(), will the processing of the child jobs be spread among the servers or will the servers only see the parent job and process the child jobs on that one server?

Will the Dashboard for each Hangfire instance show the status and console output of both parent and child jobs?