­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ declare const processExists: { /** Check if a process exists. @param input - Process ID or name to check. @returns Whether the process exists. */ (input: number | string): Promise; /** Check multiple processes if they exist. @param input - Process IDs or names to check. @returns A map with the process name/ID as key and the status as a boolean value. */ all( input: readonly (number | string)[], ): Promise>; /** Filter for processes that exist. @param input - Process IDs or names to check. @returns The processes that exist. */ filterExists(input: readonly (number | string)[]): (number | string)[]; }; export = processExists;