import type { EnvInfo } from "../utils/detect.js"; export type Mode = "quick" | "custom" | "preset"; /** * Prompt the user to select a configuration mode: quick, preset, or custom. * @param {EnvInfo} env - Detected environment information * @returns {Promise} The mode selected by the user */ export declare function selectMode(env: EnvInfo): Promise;