/** Check if a process exists. @param input - The process ID or name to check. @returns Whether the process exists. */ export function processExists(input: number | string): Promise; /** Check multiple processes if they exist. @param input - The process IDs or names to check. @returns A map with the process name/ID as key and the status as a boolean value. */ export function processExistsMultiple( input: readonly T[], ): Promise>; /** Filter processes that exist. @param input - The process IDs or names to check. @returns The processes that exist. */ export function filterExistingProcesses>(input: T): T;