import { AnyInternalCLI } from "../lib/internal-cli.mjs"; //#region src/browser/interactive-shell.d.ts interface InteractiveShellOptions { prompt?: string; prependArgs?: string[]; } /** * Browser-safe interactive shell stub. * * The interactive subshell is a Node-only feature because it depends on * readline and child_process APIs. */ declare let INTERACTIVE_SHELL: InteractiveShell | undefined; declare class InteractiveShell { constructor(_cli: AnyInternalCLI, _opts?: InteractiveShellOptions); } //#endregion export { INTERACTIVE_SHELL, InteractiveShell, InteractiveShellOptions }; //# sourceMappingURL=interactive-shell.d.mts.map