import type { LaunchJSON, DebugOptions } from '../types/index.js'; /** * Configures the launch.json file based on provided options. * * @param rootFolder - The root folder path where the app will be generated. * @param {string} cwd - The current working directory. * @param {DebugOptions} configOpts - Configuration options for the launch.json file. * @param {string} startFile - Optional html file to be used in the launch configuration. * @returns {LaunchJSON} The configured launch.json object. */ export declare function configureLaunchJsonFile(rootFolder: string, cwd: string, configOpts: DebugOptions, startFile?: string): LaunchJSON; //# sourceMappingURL=config.d.ts.map