import type { RseConfig } from "@reliverse/cfg";
export type MainMenuChoice = "create" | "clone" | "detected-projects" | "isDevTools" | "native-cli" | "manual" | "exit" | "ai" | "web-ui";
interface MainMenuOption {
    label: string;
    value: MainMenuChoice;
    hint?: string;
}
/**
 * Builds the main menu options based on dev mode, multi-rsegs, detected projects, etc.
 */
export declare function getMainMenuOptions(cwd: string, isDev: boolean, mrse: RseConfig[]): Promise<MainMenuOption[]>;
export {};
