import type { DebugOptions, WorkspaceHandlerInfo } from '../types/index.js'; /** * Manages the configuration of the debug workspace based on the provided options. * This function handles different scenarios depending on whether a workspace is open, * whether the project is inside or outside of a workspace, and other factors. * * @param rootFolder - The root folder path where the app will be generated. * @param {DebugOptions} options - The options used to determine how to manage the workspace configuration. * @param {string} options.projectPath -The project's path including project name. * @param {boolean} [options.isAppStudio] - A boolean indicating whether the current environment is BAS. * @param {boolean} [options.writeToAppOnly] - If true, write the launch configuration directly to the app folder, ignoring workspace settings. * @param {any} options.vscode - The VS Code API object. * @returns {WorkspaceHandlerInfo} An object containing the path to the `launch.json` configuration file, the cwd command, workspaceFolderUri if provided will enable reload. */ export declare function handleWorkspaceConfig(rootFolder: string, options: DebugOptions): WorkspaceHandlerInfo; //# sourceMappingURL=workspaceManager.d.ts.map