//#region src/utils/runParallel/ps.d.ts
type ProcessList = [number, number][];
type ProcessListCallback = (err: Error | null, list?: ProcessList) => void;
/**
 * Gets the list of all the pids of the system through the ps command.
 * @param callback Callback function with error and process list.
 */
declare const ps: (callback: ProcessListCallback) => void;
//#endregion
export { ps };
//# sourceMappingURL=ps.d.ts.map