importtype { Terminal } from "../internal.mjs";
/**
* The process configuration.
*/interface ProcessScope {
/**
* @returns the terminal attached to the process
*/
getTerminal(): Terminal;
/**
* Closes the scope.
*/close(): void;
}
export type { ProcessScope };