import type { Subprocess } from "bun"; export { getShellConfig, resetShellConfigCache, resolveBasicShell, type ShellConfig, scrubProcessEnv, } from "./shell-config"; /** * Check if a process is running. */ export declare function isPidRunning(pid: number | Subprocess): boolean; export declare function onProcessExit(proc: Subprocess | number, abortSignal?: AbortSignal): Promise;