export type RunningProcess = { pid: number; commandLine: string; }; export type RunningProcessList = { status: "listed"; processes: readonly RunningProcess[]; } | { status: "unavailable"; }; export declare function listRunningCommandLines(): Promise;