/**
 * Retrieves process ids of all the children processes created by the given
 * parent process identifier
 *
 * @param {number|string} parentPid parent process ID
 * @returns {Promise<string[]>} the list of matched children process ids
 * or an empty list if none matched
 */
export function listChildrenProcessIds(parentPid: number | string): Promise<string[]>;
/**
 * Calculates the path to the current module's root folder
 *
 * @returns {string} The full path to module root
 * @throws {Error} If the current module root folder cannot be determined
 */
export const getModuleRoot: (() => string) & _.MemoizedFunction;
import _ from 'lodash';
//# sourceMappingURL=utils.d.ts.map